
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_cc5e430492b76ce49d7ac78e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2d5f8727545ddbcfb3dbe823.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_78de36963110337506a4a4dd.woff')format("woff");}.ff3{font-family:ff3;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;src:url('chunks/assets/font_cbdb1002dbc10f37366babad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight: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;src:url('chunks/assets/font_6828b31b5794730003536b50.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight: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;src:url('chunks/assets/font_2f5db1d7dd3497c0daffe35f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight: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;src:url('chunks/assets/font_795b71e386710fdf5dd144c3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_678d8518b59bf979fed660f1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_894237b0084a7f3ce68728e3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1d1eb193290635f131177ab4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2044005174e6beac4b14b509.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c449b0e1380aa64769acb19b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa934c4c2455ffc2f4fd751e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cdb4010e6b45364e56cfd3fe.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f2e3da764ee31bdad00d35e7.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_142ae206e77571d48d6ec65f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ee75b7568ac95a4b3ea9007b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_08fea33f0d0349eb3a2e127d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_94c26616fd10e161c5da4ac7.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ae590f5520fd4c57c6a36a43.woff')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f08220d3d1de76add35afe94.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_b2c09f28c3b04ffbe1616954.woff')format("woff");}.ff16{font-family:ff16;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;}
.m47{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);}
.m37{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);}
.m25{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m55{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);}
.m4b{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);}
.m4e{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);}
.m1{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m53{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m4f{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m3b{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m46{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m49{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.mb{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m1e{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-8.513425px;}
._0{width:42.109747px;}
.fc0{color:transparent;}
.fse{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs6{font-size:33.000000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs3{font-size:75.000000px;}
.fs2{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:75.150000px;}
.y31{bottom:75.448500px;}
.y115{bottom:79.425000px;}
.y2d{bottom:88.800000px;}
.y2e{bottom:89.175000px;}
.y198{bottom:89.473500px;}
.y2f{bottom:89.550000px;}
.y110{bottom:93.448500px;}
.y111{bottom:93.823500px;}
.y112{bottom:94.198500px;}
.y113{bottom:94.573500px;}
.y114{bottom:94.875000px;}
.yc1{bottom:96.375000px;}
.y2a{bottom:102.448500px;}
.y2b{bottom:102.823500px;}
.y2c{bottom:103.198500px;}
.y150{bottom:103.573500px;}
.y10e{bottom:107.175000px;}
.y10f{bottom:107.550000px;}
.yc0{bottom:110.025000px;}
.y7b{bottom:110.400000px;}
.y7c{bottom:110.775000px;}
.y29{bottom:116.473500px;}
.y28{bottom:116.550000px;}
.y14e{bottom:116.848500px;}
.y14f{bottom:117.223500px;}
.ybf{bottom:123.375000px;}
.y7a{bottom:124.800000px;}
.y14c{bottom:129.823500px;}
.y14d{bottom:130.198500px;}
.y10d{bottom:134.848500px;}
.y79{bottom:138.448500px;}
.y27{bottom:143.848500px;}
.y196{bottom:144.223500px;}
.y197{bottom:144.598500px;}
.y10a{bottom:148.573500px;}
.y10b{bottom:148.948500px;}
.y10c{bottom:149.250000px;}
.ybe{bottom:150.675000px;}
.y14b{bottom:157.573500px;}
.y195{bottom:157.875000px;}
.y25{bottom:157.948500px;}
.y26{bottom:158.250000px;}
.y109{bottom:162.598500px;}
.ybd{bottom:164.400000px;}
.ybc{bottom:164.775000px;}
.y77{bottom:165.823500px;}
.y78{bottom:166.198500px;}
.y24{bottom:171.598500px;}
.y23{bottom:171.973500px;}
.y105{bottom:176.250000px;}
.y106{bottom:176.625000px;}
.y107{bottom:177.000000px;}
.y108{bottom:177.375000px;}
.ybb{bottom:178.050000px;}
.yba{bottom:178.425000px;}
.y76{bottom:179.848500px;}
.y14a{bottom:185.250000px;}
.yb9{bottom:191.775000px;}
.y74{bottom:193.573500px;}
.y75{bottom:193.875000px;}
.y21{bottom:199.275000px;}
.y22{bottom:199.348500px;}
.y103{bottom:204.000000px;}
.y104{bottom:204.375000px;}
.y1f{bottom:212.625000px;}
.y20{bottom:213.000000px;}
.y194{bottom:213.375000px;}
.y100{bottom:217.650000px;}
.y101{bottom:218.025000px;}
.y102{bottom:218.400000px;}
.yb8{bottom:219.150000px;}
.y72{bottom:221.250000px;}
.y73{bottom:221.625000px;}
.y1e{bottom:226.275000px;}
.y148{bottom:226.348500px;}
.y1d{bottom:226.650000px;}
.y149{bottom:227.025000px;}
.y193{bottom:227.400000px;}
.yfd{bottom:231.375000px;}
.yff{bottom:231.675000px;}
.yfe{bottom:231.750000px;}
.yb7{bottom:232.800000px;}
.y71{bottom:235.275000px;}
.y70{bottom:235.348500px;}
.y147{bottom:240.375000px;}
.yb6{bottom:246.450000px;}
.y6f{bottom:249.000000px;}
.y1b{bottom:253.650000px;}
.y1c{bottom:254.025000px;}
.y192{bottom:254.775000px;}
.yfb{bottom:258.375000px;}
.yfc{bottom:258.750000px;}
.y146{bottom:267.375000px;}
.y1a{bottom:267.750000px;}
.y191{bottom:268.798500px;}
.yf8{bottom:272.400000px;}
.yf9{bottom:272.775000px;}
.yfa{bottom:273.150000px;}
.yb5{bottom:273.450000px;}
.y6d{bottom:276.000000px;}
.y6e{bottom:276.375000px;}
.y19{bottom:281.400000px;}
.y145{bottom:281.775000px;}
.y190{bottom:282.450000px;}
.yf5{bottom:286.048500px;}
.yf6{bottom:286.125000px;}
.yf7{bottom:286.423500px;}
.yb4{bottom:287.173500px;}
.y6c{bottom:290.025000px;}
.y143{bottom:294.673500px;}
.y144{bottom:295.048500px;}
.yb3{bottom:300.825000px;}
.y6a{bottom:303.673500px;}
.y6b{bottom:304.048500px;}
.y141{bottom:308.400000px;}
.y142{bottom:308.775000px;}
.y18e{bottom:310.200000px;}
.y18f{bottom:310.575000px;}
.yf3{bottom:313.423500px;}
.yf4{bottom:313.798500px;}
.y18d{bottom:323.848500px;}
.yf1{bottom:327.150000px;}
.yf2{bottom:327.450000px;}
.yb2{bottom:328.200000px;}
.y68{bottom:330.673500px;}
.y69{bottom:331.048500px;}
.y18{bottom:335.400000px;}
.y17{bottom:335.775000px;}
.y18b{bottom:337.200000px;}
.y18c{bottom:337.575000px;}
.yf0{bottom:340.798500px;}
.yb1{bottom:342.223500px;}
.yb0{bottom:342.598500px;}
.y67{bottom:344.775000px;}
.y16{bottom:349.125000px;}
.y14{bottom:349.423500px;}
.y15{bottom:349.500000px;}
.y140{bottom:349.798500px;}
.yee{bottom:354.450000px;}
.yef{bottom:354.825000px;}
.yaf{bottom:356.250000px;}
.y65{bottom:358.423500px;}
.y66{bottom:358.798500px;}
.y13{bottom:363.150000px;}
.y13f{bottom:363.450000px;}
.y18a{bottom:364.875000px;}
.y12{bottom:376.798500px;}
.y189{bottom:378.598500px;}
.y188{bottom:378.973500px;}
.yec{bottom:381.825000px;}
.yed{bottom:382.200000px;}
.yae{bottom:383.625000px;}
.y63{bottom:385.423500px;}
.y64{bottom:385.798500px;}
.y13d{bottom:390.450000px;}
.y13e{bottom:390.825000px;}
.y186{bottom:392.250000px;}
.y187{bottom:392.625000px;}
.yea{bottom:395.548500px;}
.yeb{bottom:395.848500px;}
.yad{bottom:397.348500px;}
.y62{bottom:399.450000px;}
.y11{bottom:404.173500px;}
.ye8{bottom:409.200000px;}
.ye9{bottom:409.575000px;}
.yac{bottom:411.375000px;}
.y61{bottom:413.173500px;}
.y10{bottom:417.525000px;}
.y185{bottom:420.000000px;}
.yf{bottom:431.173500px;}
.y13c{bottom:431.473500px;}
.ye{bottom:431.548500px;}
.y183{bottom:433.275000px;}
.y184{bottom:433.348500px;}
.y182{bottom:433.650000px;}
.ye7{bottom:436.875000px;}
.ye6{bottom:436.950000px;}
.yab{bottom:438.750000px;}
.y5f{bottom:440.548500px;}
.y60{bottom:440.848500px;}
.y13b{bottom:444.825000px;}
.yd{bottom:445.200000px;}
.y181{bottom:447.000000px;}
.ye5{bottom:450.598500px;}
.yaa{bottom:452.025000px;}
.ya9{bottom:452.400000px;}
.y5e{bottom:454.200000px;}
.y13a{bottom:458.473500px;}
.y139{bottom:458.548500px;}
.yc{bottom:458.923500px;}
.ye4{bottom:463.950000px;}
.ya8{bottom:465.375000px;}
.ya7{bottom:465.750000px;}
.y5d{bottom:467.848500px;}
.y17e{bottom:474.375000px;}
.y17f{bottom:474.673500px;}
.y180{bottom:474.750000px;}
.ya6{bottom:479.400000px;}
.y138{bottom:485.848500px;}
.y17d{bottom:488.025000px;}
.ye3{bottom:491.625000px;}
.y5a{bottom:494.848500px;}
.y5c{bottom:494.923500px;}
.y5b{bottom:495.223500px;}
.y137{bottom:499.575000px;}
.yb{bottom:500.250000px;}
.y17c{bottom:502.048500px;}
.ye1{bottom:505.650000px;}
.ye2{bottom:505.723500px;}
.ya5{bottom:506.775000px;}
.y58{bottom:508.875000px;}
.y59{bottom:508.950000px;}
.y135{bottom:512.848500px;}
.y136{bottom:513.223500px;}
.ya{bottom:513.973500px;}
.ye0{bottom:519.375000px;}
.ya4{bottom:520.423500px;}
.ya3{bottom:520.798500px;}
.y57{bottom:522.598500px;}
.y9{bottom:528.000000px;}
.y17b{bottom:529.423500px;}
.ydf{bottom:533.025000px;}
.ya2{bottom:534.150000px;}
.y56{bottom:536.625000px;}
.y133{bottom:540.223500px;}
.y134{bottom:540.598500px;}
.y179{bottom:543.075000px;}
.y17a{bottom:543.150000px;}
.y132{bottom:554.625000px;}
.y178{bottom:556.423500px;}
.y177{bottom:556.798500px;}
.yde{bottom:560.775000px;}
.ya1{bottom:561.075000px;}
.ya0{bottom:561.150000px;}
.y9f{bottom:561.450000px;}
.y54{bottom:564.000000px;}
.y55{bottom:564.375000px;}
.y130{bottom:567.973500px;}
.y131{bottom:568.348500px;}
.ydd{bottom:574.423500px;}
.y9e{bottom:574.798500px;}
.y9d{bottom:575.173500px;}
.y53{bottom:578.025000px;}
.y176{bottom:583.798500px;}
.y175{bottom:584.173500px;}
.ydb{bottom:588.075000px;}
.ydc{bottom:588.150000px;}
.y9c{bottom:588.450000px;}
.y9b{bottom:588.825000px;}
.y52{bottom:591.673500px;}
.y51{bottom:591.750000px;}
.y12f{bottom:595.650000px;}
.y174{bottom:597.825000px;}
.y173{bottom:598.200000px;}
.yda{bottom:601.798500px;}
.y12e{bottom:609.375000px;}
.y172{bottom:611.848500px;}
.y9a{bottom:616.200000px;}
.y50{bottom:619.423500px;}
.y12d{bottom:623.025000px;}
.y8{bottom:623.400000px;}
.y7{bottom:623.775000px;}
.yd9{bottom:629.173500px;}
.y99{bottom:629.473500px;}
.y98{bottom:629.548500px;}
.y97{bottom:629.848500px;}
.y4f{bottom:633.075000px;}
.y4e{bottom:633.450000px;}
.y170{bottom:639.223500px;}
.y171{bottom:639.598500px;}
.y6{bottom:641.025000px;}
.yd8{bottom:642.825000px;}
.y96{bottom:643.200000px;}
.y95{bottom:643.575000px;}
.y4d{bottom:647.173500px;}
.y4c{bottom:647.548500px;}
.y12c{bottom:650.400000px;}
.y16f{bottom:652.950000px;}
.y16e{bottom:653.250000px;}
.y16d{bottom:653.625000px;}
.yd7{bottom:656.848500px;}
.y12b{bottom:664.423500px;}
.y16c{bottom:666.598500px;}
.y16b{bottom:666.973500px;}
.y94{bottom:670.200000px;}
.y93{bottom:670.575000px;}
.y4b{bottom:674.848500px;}
.y12a{bottom:678.075000px;}
.y129{bottom:678.150000px;}
.y92{bottom:683.848500px;}
.y91{bottom:684.223500px;}
.y4a{bottom:687.825000px;}
.y49{bottom:688.200000px;}
.y48{bottom:688.575000px;}
.y128{bottom:691.798500px;}
.y16a{bottom:694.650000px;}
.y169{bottom:695.025000px;}
.y90{bottom:697.575000px;}
.y8e{bottom:697.875000px;}
.y8f{bottom:697.950000px;}
.y47{bottom:702.223500px;}
.y168{bottom:708.000000px;}
.y167{bottom:708.375000px;}
.yd6{bottom:711.223500px;}
.yd5{bottom:711.598500px;}
.y127{bottom:718.798500px;}
.y166{bottom:722.400000px;}
.y8d{bottom:725.250000px;}
.y46{bottom:729.223500px;}
.y126{bottom:732.825000px;}
.y8c{bottom:738.973500px;}
.y8b{bottom:739.348500px;}
.y45{bottom:742.575000px;}
.y44{bottom:742.875000px;}
.y43{bottom:743.250000px;}
.y125{bottom:746.473500px;}
.y124{bottom:746.548500px;}
.y165{bottom:749.400000px;}
.yd4{bottom:751.875000px;}
.yd3{bottom:752.250000px;}
.y8a{bottom:753.000000px;}
.y5{bottom:754.423500px;}
.y42{bottom:756.973500px;}
.y123{bottom:760.200000px;}
.y163{bottom:762.673500px;}
.y164{bottom:762.750000px;}
.y162{bottom:763.125000px;}
.yd2{bottom:765.598500px;}
.yd1{bottom:765.973500px;}
.yd0{bottom:766.348500px;}
.y4{bottom:776.775000px;}
.y161{bottom:777.073500px;}
.y160{bottom:777.150000px;}
.ycf{bottom:779.625000px;}
.yce{bottom:780.000000px;}
.y89{bottom:780.750000px;}
.y41{bottom:783.598500px;}
.y40{bottom:783.973500px;}
.y121{bottom:787.198500px;}
.y122{bottom:787.573500px;}
.y88{bottom:794.025000px;}
.y87{bottom:794.400000px;}
.y3f{bottom:796.948500px;}
.y3e{bottom:797.250000px;}
.y3d{bottom:797.625000px;}
.y3{bottom:799.500000px;}
.y120{bottom:801.223500px;}
.y15f{bottom:804.073500px;}
.y15e{bottom:804.448500px;}
.ycd{bottom:807.000000px;}
.y86{bottom:808.050000px;}
.y3c{bottom:811.650000px;}
.y11e{bottom:814.573500px;}
.y11f{bottom:814.948500px;}
.y15d{bottom:817.050000px;}
.y15c{bottom:817.425000px;}
.y15b{bottom:817.800000px;}
.ycc{bottom:820.348500px;}
.ycb{bottom:820.650000px;}
.y15a{bottom:832.198500px;}
.yca{bottom:834.750000px;}
.y84{bottom:835.425000px;}
.y85{bottom:835.800000px;}
.y3b{bottom:839.025000px;}
.y11c{bottom:841.875000px;}
.y11d{bottom:841.948500px;}
.y82{bottom:849.073500px;}
.y83{bottom:849.150000px;}
.y81{bottom:849.448500px;}
.y3a{bottom:852.000000px;}
.y39{bottom:852.375000px;}
.y11b{bottom:855.598500px;}
.y159{bottom:859.198500px;}
.yc9{bottom:861.750000px;}
.yc8{bottom:862.050000px;}
.y80{bottom:863.175000px;}
.y38{bottom:865.348500px;}
.y37{bottom:865.650000px;}
.y36{bottom:866.025000px;}
.y11a{bottom:869.250000px;}
.y158{bottom:872.175000px;}
.y157{bottom:872.473500px;}
.y156{bottom:872.848500px;}
.yc7{bottom:875.025000px;}
.yc6{bottom:875.400000px;}
.y35{bottom:880.050000px;}
.y7f{bottom:884.775000px;}
.y155{bottom:886.198500px;}
.y154{bottom:886.573500px;}
.y7d{bottom:888.000000px;}
.yc5{bottom:889.425000px;}
.y7e{bottom:893.925000px;}
.y119{bottom:894.525000px;}
.y116{bottom:897.375000px;}
.y117{bottom:897.750000px;}
.y118{bottom:903.525000px;}
.y32{bottom:905.323500px;}
.y1{bottom:907.050000px;}
.y2{bottom:907.125000px;}
.y34{bottom:908.175000px;}
.y151{bottom:913.198500px;}
.y33{bottom:915.750000px;}
.y153{bottom:916.125000px;}
.yc2{bottom:918.973500px;}
.yc4{bottom:921.823500px;}
.y152{bottom:923.473500px;}
.yc3{bottom:928.875000px;}
.h13{height:18.501164px;}
.hb{height:30.835273px;}
.ha{height:32.387695px;}
.h8{height:34.417969px;}
.h15{height:35.332031px;}
.h9{height:37.546875px;}
.hc{height:40.085854px;}
.h14{height:41.220703px;}
.h11{height:43.722656px;}
.hd{height:46.252909px;}
.he{height:46.845703px;}
.h17{height:47.109375px;}
.h1{height:48.375000px;}
.h7{height:49.336436px;}
.hf{height:52.419963px;}
.h10{height:52.998047px;}
.h6{height:58.587018px;}
.h5{height:58.886719px;}
.h12{height:59.449219px;}
.h2{height:61.831055px;}
.h16{height:65.707031px;}
.h4{height:73.608398px;}
.h3{height:79.497070px;}
.h0{height:1005.000000px;}
.w0{width:696.000000px;}
.x0{left:0.000000px;}
.x1{left:96.148500px;}
.xda{left:97.573500px;}
.xaa{left:98.625000px;}
.xd{left:99.750000px;}
.xb{left:101.550000px;}
.xfb{left:103.350000px;}
.xef{left:104.398500px;}
.x74{left:105.448500px;}
.xb0{left:106.948500px;}
.xad{left:108.000000px;}
.x73{left:109.050000px;}
.x6{left:117.750000px;}
.x28{left:121.350000px;}
.xc{left:125.250000px;}
.xae{left:128.175000px;}
.xd6{left:129.600000px;}
.xa2{left:130.648500px;}
.x31{left:131.773500px;}
.x56{left:133.573500px;}
.x44{left:134.625000px;}
.xcf{left:136.425000px;}
.xee{left:137.550000px;}
.xbe{left:138.600000px;}
.x39{left:139.648500px;}
.x20{left:142.573500px;}
.xf2{left:145.050000px;}
.x19{left:147.600000px;}
.xd0{left:150.148500px;}
.xff{left:151.198500px;}
.x85{left:152.250000px;}
.x89{left:153.750000px;}
.x75{left:156.975000px;}
.x11{left:158.398500px;}
.xf5{left:165.600000px;}
.x90{left:166.648500px;}
.x6c{left:168.823500px;}
.xa1{left:171.750000px;}
.x34{left:173.175000px;}
.x40{left:175.350000px;}
.xd8{left:176.398500px;}
.xfe{left:177.448500px;}
.x93{left:179.625000px;}
.x58{left:182.175000px;}
.x66{left:185.023500px;}
.x3d{left:186.448500px;}
.x5e{left:189.000000px;}
.x5b{left:190.800000px;}
.x84{left:194.023500px;}
.xd7{left:197.625000px;}
.xa3{left:198.750000px;}
.x9a{left:199.798500px;}
.x12{left:201.225000px;}
.x32{left:202.648500px;}
.xdb{left:204.450000px;}
.x2d{left:206.250000px;}
.x78{left:207.750000px;}
.xe2{left:208.798500px;}
.x51{left:209.850000px;}
.x3a{left:211.648500px;}
.x98{left:213.148500px;}
.x70{left:214.950000px;}
.x1a{left:217.423500px;}
.xa9{left:219.225000px;}
.x4b{left:220.648500px;}
.xb8{left:222.148500px;}
.x8a{left:226.423500px;}
.x4f{left:227.548500px;}
.x8c{left:228.600000px;}
.x6b{left:229.648500px;}
.xe{left:231.450000px;}
.xeb{left:234.000000px;}
.x7d{left:235.798500px;}
.x9{left:236.850000px;}
.xab{left:239.398500px;}
.x3c{left:240.450000px;}
.xc3{left:241.950000px;}
.xb1{left:243.000000px;}
.x8{left:245.173500px;}
.x2e{left:247.350000px;}
.x21{left:249.825000px;}
.x35{left:253.798500px;}
.xe7{left:255.225000px;}
.x59{left:257.398500px;}
.x7{left:258.450000px;}
.x42{left:260.625000px;}
.xa4{left:262.423500px;}
.x55{left:264.225000px;}
.x2{left:265.648500px;}
.x71{left:267.450000px;}
.x9b{left:268.950000px;}
.x77{left:270.000000px;}
.x52{left:271.048500px;}
.xc4{left:272.173500px;}
.x7c{left:275.023500px;}
.x6d{left:277.200000px;}
.xd4{left:279.000000px;}
.x3e{left:280.798500px;}
.xe8{left:281.850000px;}
.x6e{left:284.023500px;}
.xb6{left:285.148500px;}
.xf0{left:286.575000px;}
.x5{left:287.625000px;}
.xed{left:288.750000px;}
.xc7{left:289.798500px;}
.x67{left:292.350000px;}
.xf8{left:294.450000px;}
.xf{left:296.250000px;}
.xb9{left:298.048500px;}
.x7e{left:302.023500px;}
.x9c{left:304.200000px;}
.x5f{left:307.423500px;}
.x7b{left:308.850000px;}
.x22{left:310.350000px;}
.x94{left:314.625000px;}
.xdd{left:316.048500px;}
.x62{left:317.173500px;}
.xdf{left:319.350000px;}
.x91{left:321.450000px;}
.xb3{left:323.250000px;}
.x86{left:324.375000px;}
.x4c{left:325.423500px;}
.x3{left:330.148500px;}
.x1b{left:331.200000px;}
.xe1{left:332.625000px;}
.x72{left:334.048500px;}
.x7f{left:335.548500px;}
.xea{left:336.600000px;}
.xd5{left:339.825000px;}
.x29{left:343.423500px;}
.x41{left:345.600000px;}
.x4d{left:348.825000px;}
.xc9{left:351.000000px;}
.x9d{left:352.798500px;}
.xd2{left:354.975000px;}
.xe3{left:356.773500px;}
.x1c{left:358.200000px;}
.x2a{left:360.750000px;}
.x8b{left:362.850000px;}
.x68{left:364.350000px;}
.x37{left:368.625000px;}
.x23{left:370.048500px;}
.x60{left:371.173500px;}
.x5c{left:372.225000px;}
.x87{left:374.398500px;}
.x3b{left:375.825000px;}
.x63{left:377.625000px;}
.x4e{left:379.423500px;}
.x99{left:380.548500px;}
.x92{left:382.350000px;}
.x80{left:383.398500px;}
.x6a{left:385.950000px;}
.x79{left:388.423500px;}
.x5a{left:389.848500px;}
.xe6{left:392.025000px;}
.x24{left:393.150000px;}
.xdc{left:394.950000px;}
.x2f{left:397.423500px;}
.xfc{left:401.400000px;}
.xf7{left:402.825000px;}
.xa{left:403.950000px;}
.xb2{left:405.750000px;}
.x4a{left:406.798500px;}
.xf9{left:408.223500px;}
.x50{left:410.775000px;}
.x48{left:412.200000px;}
.xa5{left:413.625000px;}
.x13{left:417.598500px;}
.x61{left:419.775000px;}
.xca{left:420.825000px;}
.x30{left:423.000000px;}
.x88{left:424.423500px;}
.x45{left:425.848500px;}
.x95{left:427.650000px;}
.xcd{left:429.150000px;}
.xc5{left:430.575000px;}
.x53{left:432.000000px;}
.xf6{left:435.598500px;}
.x25{left:438.150000px;}
.x14{left:439.200000px;}
.x9f{left:442.048500px;}
.x8d{left:443.173500px;}
.xc8{left:445.348500px;}
.x1d{left:450.375000px;}
.x38{left:452.548500px;}
.xb4{left:453.598500px;}
.xe0{left:454.650000px;}
.x15{left:456.150000px;}
.x36{left:457.200000px;}
.x81{left:459.000000px;}
.x26{left:464.025000px;}
.x16{left:466.575000px;}
.x64{left:468.000000px;}
.xac{left:470.173500px;}
.x57{left:471.223500px;}
.xb5{left:473.025000px;}
.x1e{left:477.375000px;}
.x2b{left:479.548500px;}
.xaf{left:481.650000px;}
.xa6{left:485.625000px;}
.xbb{left:487.423500px;}
.x17{left:489.223500px;}
.x27{left:490.650000px;}
.x96{left:492.150000px;}
.xcb{left:499.650000px;}
.x54{left:501.150000px;}
.x18{left:504.750000px;}
.x8e{left:506.848500px;}
.xe9{left:510.450000px;}
.xc2{left:511.575000px;}
.xc0{left:513.375000px;}
.xbd{left:514.423500px;}
.xa7{left:516.598500px;}
.xfa{left:519.450000px;}
.x83{left:520.950000px;}
.xd9{left:522.375000px;}
.x49{left:524.173500px;}
.xf3{left:525.223500px;}
.x1f{left:526.348500px;}
.xf4{left:527.400000px;}
.xfd{left:530.250000px;}
.xc1{left:532.423500px;}
.x4{left:534.598500px;}
.xb7{left:536.400000px;}
.x46{left:537.825000px;}
.x7a{left:539.625000px;}
.x97{left:540.750000px;}
.xbc{left:542.173500px;}
.x65{left:543.973500px;}
.x82{left:545.400000px;}
.x2c{left:546.450000px;}
.xe5{left:548.250000px;}
.x43{left:549.375000px;}
.xce{left:550.798500px;}
.x69{left:553.348500px;}
.xa0{left:554.775000px;}
.x8f{left:555.825000px;}
.xba{left:559.048500px;}
.xec{left:562.650000px;}
.x10{left:564.150000px;}
.xa8{left:568.423500px;}
.x3f{left:569.848500px;}
.xcc{left:570.973500px;}
.xe4{left:573.150000px;}
.x33{left:576.750000px;}
.x6f{left:578.548500px;}
.x9e{left:582.450000px;}
.xc6{left:584.250000px;}
.xd1{left:586.048500px;}
.x76{left:590.025000px;}
.x47{left:592.575000px;}
.xde{left:594.000000px;}
.xd3{left:595.048500px;}
.x5d{left:598.650000px;}
.xf1{left:602.625000px;}
.xbf{left:604.048500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-7.567489pt;}
._0{width:37.430886pt;}
.fse{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs6{font-size:29.333333pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs3{font-size:66.666667pt;}
.fs2{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:66.800000pt;}
.y31{bottom:67.065333pt;}
.y115{bottom:70.600000pt;}
.y2d{bottom:78.933333pt;}
.y2e{bottom:79.266667pt;}
.y198{bottom:79.532000pt;}
.y2f{bottom:79.600000pt;}
.y110{bottom:83.065333pt;}
.y111{bottom:83.398667pt;}
.y112{bottom:83.732000pt;}
.y113{bottom:84.065333pt;}
.y114{bottom:84.333333pt;}
.yc1{bottom:85.666667pt;}
.y2a{bottom:91.065333pt;}
.y2b{bottom:91.398667pt;}
.y2c{bottom:91.732000pt;}
.y150{bottom:92.065333pt;}
.y10e{bottom:95.266667pt;}
.y10f{bottom:95.600000pt;}
.yc0{bottom:97.800000pt;}
.y7b{bottom:98.133333pt;}
.y7c{bottom:98.466667pt;}
.y29{bottom:103.532000pt;}
.y28{bottom:103.600000pt;}
.y14e{bottom:103.865333pt;}
.y14f{bottom:104.198667pt;}
.ybf{bottom:109.666667pt;}
.y7a{bottom:110.933333pt;}
.y14c{bottom:115.398667pt;}
.y14d{bottom:115.732000pt;}
.y10d{bottom:119.865333pt;}
.y79{bottom:123.065333pt;}
.y27{bottom:127.865333pt;}
.y196{bottom:128.198667pt;}
.y197{bottom:128.532000pt;}
.y10a{bottom:132.065333pt;}
.y10b{bottom:132.398667pt;}
.y10c{bottom:132.666667pt;}
.ybe{bottom:133.933333pt;}
.y14b{bottom:140.065333pt;}
.y195{bottom:140.333333pt;}
.y25{bottom:140.398667pt;}
.y26{bottom:140.666667pt;}
.y109{bottom:144.532000pt;}
.ybd{bottom:146.133333pt;}
.ybc{bottom:146.466667pt;}
.y77{bottom:147.398667pt;}
.y78{bottom:147.732000pt;}
.y24{bottom:152.532000pt;}
.y23{bottom:152.865333pt;}
.y105{bottom:156.666667pt;}
.y106{bottom:157.000000pt;}
.y107{bottom:157.333333pt;}
.y108{bottom:157.666667pt;}
.ybb{bottom:158.266667pt;}
.yba{bottom:158.600000pt;}
.y76{bottom:159.865333pt;}
.y14a{bottom:164.666667pt;}
.yb9{bottom:170.466667pt;}
.y74{bottom:172.065333pt;}
.y75{bottom:172.333333pt;}
.y21{bottom:177.133333pt;}
.y22{bottom:177.198667pt;}
.y103{bottom:181.333333pt;}
.y104{bottom:181.666667pt;}
.y1f{bottom:189.000000pt;}
.y20{bottom:189.333333pt;}
.y194{bottom:189.666667pt;}
.y100{bottom:193.466667pt;}
.y101{bottom:193.800000pt;}
.y102{bottom:194.133333pt;}
.yb8{bottom:194.800000pt;}
.y72{bottom:196.666667pt;}
.y73{bottom:197.000000pt;}
.y1e{bottom:201.133333pt;}
.y148{bottom:201.198667pt;}
.y1d{bottom:201.466667pt;}
.y149{bottom:201.800000pt;}
.y193{bottom:202.133333pt;}
.yfd{bottom:205.666667pt;}
.yff{bottom:205.933333pt;}
.yfe{bottom:206.000000pt;}
.yb7{bottom:206.933333pt;}
.y71{bottom:209.133333pt;}
.y70{bottom:209.198667pt;}
.y147{bottom:213.666667pt;}
.yb6{bottom:219.066667pt;}
.y6f{bottom:221.333333pt;}
.y1b{bottom:225.466667pt;}
.y1c{bottom:225.800000pt;}
.y192{bottom:226.466667pt;}
.yfb{bottom:229.666667pt;}
.yfc{bottom:230.000000pt;}
.y146{bottom:237.666667pt;}
.y1a{bottom:238.000000pt;}
.y191{bottom:238.932000pt;}
.yf8{bottom:242.133333pt;}
.yf9{bottom:242.466667pt;}
.yfa{bottom:242.800000pt;}
.yb5{bottom:243.066667pt;}
.y6d{bottom:245.333333pt;}
.y6e{bottom:245.666667pt;}
.y19{bottom:250.133333pt;}
.y145{bottom:250.466667pt;}
.y190{bottom:251.066667pt;}
.yf5{bottom:254.265333pt;}
.yf6{bottom:254.333333pt;}
.yf7{bottom:254.598667pt;}
.yb4{bottom:255.265333pt;}
.y6c{bottom:257.800000pt;}
.y143{bottom:261.932000pt;}
.y144{bottom:262.265333pt;}
.yb3{bottom:267.400000pt;}
.y6a{bottom:269.932000pt;}
.y6b{bottom:270.265333pt;}
.y141{bottom:274.133333pt;}
.y142{bottom:274.466667pt;}
.y18e{bottom:275.733333pt;}
.y18f{bottom:276.066667pt;}
.yf3{bottom:278.598667pt;}
.yf4{bottom:278.932000pt;}
.y18d{bottom:287.865333pt;}
.yf1{bottom:290.800000pt;}
.yf2{bottom:291.066667pt;}
.yb2{bottom:291.733333pt;}
.y68{bottom:293.932000pt;}
.y69{bottom:294.265333pt;}
.y18{bottom:298.133333pt;}
.y17{bottom:298.466667pt;}
.y18b{bottom:299.733333pt;}
.y18c{bottom:300.066667pt;}
.yf0{bottom:302.932000pt;}
.yb1{bottom:304.198667pt;}
.yb0{bottom:304.532000pt;}
.y67{bottom:306.466667pt;}
.y16{bottom:310.333333pt;}
.y14{bottom:310.598667pt;}
.y15{bottom:310.666667pt;}
.y140{bottom:310.932000pt;}
.yee{bottom:315.066667pt;}
.yef{bottom:315.400000pt;}
.yaf{bottom:316.666667pt;}
.y65{bottom:318.598667pt;}
.y66{bottom:318.932000pt;}
.y13{bottom:322.800000pt;}
.y13f{bottom:323.066667pt;}
.y18a{bottom:324.333333pt;}
.y12{bottom:334.932000pt;}
.y189{bottom:336.532000pt;}
.y188{bottom:336.865333pt;}
.yec{bottom:339.400000pt;}
.yed{bottom:339.733333pt;}
.yae{bottom:341.000000pt;}
.y63{bottom:342.598667pt;}
.y64{bottom:342.932000pt;}
.y13d{bottom:347.066667pt;}
.y13e{bottom:347.400000pt;}
.y186{bottom:348.666667pt;}
.y187{bottom:349.000000pt;}
.yea{bottom:351.598667pt;}
.yeb{bottom:351.865333pt;}
.yad{bottom:353.198667pt;}
.y62{bottom:355.066667pt;}
.y11{bottom:359.265333pt;}
.ye8{bottom:363.733333pt;}
.ye9{bottom:364.066667pt;}
.yac{bottom:365.666667pt;}
.y61{bottom:367.265333pt;}
.y10{bottom:371.133333pt;}
.y185{bottom:373.333333pt;}
.yf{bottom:383.265333pt;}
.y13c{bottom:383.532000pt;}
.ye{bottom:383.598667pt;}
.y183{bottom:385.133333pt;}
.y184{bottom:385.198667pt;}
.y182{bottom:385.466667pt;}
.ye7{bottom:388.333333pt;}
.ye6{bottom:388.400000pt;}
.yab{bottom:390.000000pt;}
.y5f{bottom:391.598667pt;}
.y60{bottom:391.865333pt;}
.y13b{bottom:395.400000pt;}
.yd{bottom:395.733333pt;}
.y181{bottom:397.333333pt;}
.ye5{bottom:400.532000pt;}
.yaa{bottom:401.800000pt;}
.ya9{bottom:402.133333pt;}
.y5e{bottom:403.733333pt;}
.y13a{bottom:407.532000pt;}
.y139{bottom:407.598667pt;}
.yc{bottom:407.932000pt;}
.ye4{bottom:412.400000pt;}
.ya8{bottom:413.666667pt;}
.ya7{bottom:414.000000pt;}
.y5d{bottom:415.865333pt;}
.y17e{bottom:421.666667pt;}
.y17f{bottom:421.932000pt;}
.y180{bottom:422.000000pt;}
.ya6{bottom:426.133333pt;}
.y138{bottom:431.865333pt;}
.y17d{bottom:433.800000pt;}
.ye3{bottom:437.000000pt;}
.y5a{bottom:439.865333pt;}
.y5c{bottom:439.932000pt;}
.y5b{bottom:440.198667pt;}
.y137{bottom:444.066667pt;}
.yb{bottom:444.666667pt;}
.y17c{bottom:446.265333pt;}
.ye1{bottom:449.466667pt;}
.ye2{bottom:449.532000pt;}
.ya5{bottom:450.466667pt;}
.y58{bottom:452.333333pt;}
.y59{bottom:452.400000pt;}
.y135{bottom:455.865333pt;}
.y136{bottom:456.198667pt;}
.ya{bottom:456.865333pt;}
.ye0{bottom:461.666667pt;}
.ya4{bottom:462.598667pt;}
.ya3{bottom:462.932000pt;}
.y57{bottom:464.532000pt;}
.y9{bottom:469.333333pt;}
.y17b{bottom:470.598667pt;}
.ydf{bottom:473.800000pt;}
.ya2{bottom:474.800000pt;}
.y56{bottom:477.000000pt;}
.y133{bottom:480.198667pt;}
.y134{bottom:480.532000pt;}
.y179{bottom:482.733333pt;}
.y17a{bottom:482.800000pt;}
.y132{bottom:493.000000pt;}
.y178{bottom:494.598667pt;}
.y177{bottom:494.932000pt;}
.yde{bottom:498.466667pt;}
.ya1{bottom:498.733333pt;}
.ya0{bottom:498.800000pt;}
.y9f{bottom:499.066667pt;}
.y54{bottom:501.333333pt;}
.y55{bottom:501.666667pt;}
.y130{bottom:504.865333pt;}
.y131{bottom:505.198667pt;}
.ydd{bottom:510.598667pt;}
.y9e{bottom:510.932000pt;}
.y9d{bottom:511.265333pt;}
.y53{bottom:513.800000pt;}
.y176{bottom:518.932000pt;}
.y175{bottom:519.265333pt;}
.ydb{bottom:522.733333pt;}
.ydc{bottom:522.800000pt;}
.y9c{bottom:523.066667pt;}
.y9b{bottom:523.400000pt;}
.y52{bottom:525.932000pt;}
.y51{bottom:526.000000pt;}
.y12f{bottom:529.466667pt;}
.y174{bottom:531.400000pt;}
.y173{bottom:531.733333pt;}
.yda{bottom:534.932000pt;}
.y12e{bottom:541.666667pt;}
.y172{bottom:543.865333pt;}
.y9a{bottom:547.733333pt;}
.y50{bottom:550.598667pt;}
.y12d{bottom:553.800000pt;}
.y8{bottom:554.133333pt;}
.y7{bottom:554.466667pt;}
.yd9{bottom:559.265333pt;}
.y99{bottom:559.532000pt;}
.y98{bottom:559.598667pt;}
.y97{bottom:559.865333pt;}
.y4f{bottom:562.733333pt;}
.y4e{bottom:563.066667pt;}
.y170{bottom:568.198667pt;}
.y171{bottom:568.532000pt;}
.y6{bottom:569.800000pt;}
.yd8{bottom:571.400000pt;}
.y96{bottom:571.733333pt;}
.y95{bottom:572.066667pt;}
.y4d{bottom:575.265333pt;}
.y4c{bottom:575.598667pt;}
.y12c{bottom:578.133333pt;}
.y16f{bottom:580.400000pt;}
.y16e{bottom:580.666667pt;}
.y16d{bottom:581.000000pt;}
.yd7{bottom:583.865333pt;}
.y12b{bottom:590.598667pt;}
.y16c{bottom:592.532000pt;}
.y16b{bottom:592.865333pt;}
.y94{bottom:595.733333pt;}
.y93{bottom:596.066667pt;}
.y4b{bottom:599.865333pt;}
.y12a{bottom:602.733333pt;}
.y129{bottom:602.800000pt;}
.y92{bottom:607.865333pt;}
.y91{bottom:608.198667pt;}
.y4a{bottom:611.400000pt;}
.y49{bottom:611.733333pt;}
.y48{bottom:612.066667pt;}
.y128{bottom:614.932000pt;}
.y16a{bottom:617.466667pt;}
.y169{bottom:617.800000pt;}
.y90{bottom:620.066667pt;}
.y8e{bottom:620.333333pt;}
.y8f{bottom:620.400000pt;}
.y47{bottom:624.198667pt;}
.y168{bottom:629.333333pt;}
.y167{bottom:629.666667pt;}
.yd6{bottom:632.198667pt;}
.yd5{bottom:632.532000pt;}
.y127{bottom:638.932000pt;}
.y166{bottom:642.133333pt;}
.y8d{bottom:644.666667pt;}
.y46{bottom:648.198667pt;}
.y126{bottom:651.400000pt;}
.y8c{bottom:656.865333pt;}
.y8b{bottom:657.198667pt;}
.y45{bottom:660.066667pt;}
.y44{bottom:660.333333pt;}
.y43{bottom:660.666667pt;}
.y125{bottom:663.532000pt;}
.y124{bottom:663.598667pt;}
.y165{bottom:666.133333pt;}
.yd4{bottom:668.333333pt;}
.yd3{bottom:668.666667pt;}
.y8a{bottom:669.333333pt;}
.y5{bottom:670.598667pt;}
.y42{bottom:672.865333pt;}
.y123{bottom:675.733333pt;}
.y163{bottom:677.932000pt;}
.y164{bottom:678.000000pt;}
.y162{bottom:678.333333pt;}
.yd2{bottom:680.532000pt;}
.yd1{bottom:680.865333pt;}
.yd0{bottom:681.198667pt;}
.y4{bottom:690.466667pt;}
.y161{bottom:690.732000pt;}
.y160{bottom:690.800000pt;}
.ycf{bottom:693.000000pt;}
.yce{bottom:693.333333pt;}
.y89{bottom:694.000000pt;}
.y41{bottom:696.532000pt;}
.y40{bottom:696.865333pt;}
.y121{bottom:699.732000pt;}
.y122{bottom:700.065333pt;}
.y88{bottom:705.800000pt;}
.y87{bottom:706.133333pt;}
.y3f{bottom:708.398667pt;}
.y3e{bottom:708.666667pt;}
.y3d{bottom:709.000000pt;}
.y3{bottom:710.666667pt;}
.y120{bottom:712.198667pt;}
.y15f{bottom:714.732000pt;}
.y15e{bottom:715.065333pt;}
.ycd{bottom:717.333333pt;}
.y86{bottom:718.266667pt;}
.y3c{bottom:721.466667pt;}
.y11e{bottom:724.065333pt;}
.y11f{bottom:724.398667pt;}
.y15d{bottom:726.266667pt;}
.y15c{bottom:726.600000pt;}
.y15b{bottom:726.933333pt;}
.ycc{bottom:729.198667pt;}
.ycb{bottom:729.466667pt;}
.y15a{bottom:739.732000pt;}
.yca{bottom:742.000000pt;}
.y84{bottom:742.600000pt;}
.y85{bottom:742.933333pt;}
.y3b{bottom:745.800000pt;}
.y11c{bottom:748.333333pt;}
.y11d{bottom:748.398667pt;}
.y82{bottom:754.732000pt;}
.y83{bottom:754.800000pt;}
.y81{bottom:755.065333pt;}
.y3a{bottom:757.333333pt;}
.y39{bottom:757.666667pt;}
.y11b{bottom:760.532000pt;}
.y159{bottom:763.732000pt;}
.yc9{bottom:766.000000pt;}
.yc8{bottom:766.266667pt;}
.y80{bottom:767.266667pt;}
.y38{bottom:769.198667pt;}
.y37{bottom:769.466667pt;}
.y36{bottom:769.800000pt;}
.y11a{bottom:772.666667pt;}
.y158{bottom:775.266667pt;}
.y157{bottom:775.532000pt;}
.y156{bottom:775.865333pt;}
.yc7{bottom:777.800000pt;}
.yc6{bottom:778.133333pt;}
.y35{bottom:782.266667pt;}
.y7f{bottom:786.466667pt;}
.y155{bottom:787.732000pt;}
.y154{bottom:788.065333pt;}
.y7d{bottom:789.333333pt;}
.yc5{bottom:790.600000pt;}
.y7e{bottom:794.600000pt;}
.y119{bottom:795.133333pt;}
.y116{bottom:797.666667pt;}
.y117{bottom:798.000000pt;}
.y118{bottom:803.133333pt;}
.y32{bottom:804.732000pt;}
.y1{bottom:806.266667pt;}
.y2{bottom:806.333333pt;}
.y34{bottom:807.266667pt;}
.y151{bottom:811.732000pt;}
.y33{bottom:814.000000pt;}
.y153{bottom:814.333333pt;}
.yc2{bottom:816.865333pt;}
.yc4{bottom:819.398667pt;}
.y152{bottom:820.865333pt;}
.yc3{bottom:825.666667pt;}
.h13{height:16.445479pt;}
.hb{height:27.409131pt;}
.ha{height:28.789062pt;}
.h8{height:30.593750pt;}
.h15{height:31.406250pt;}
.h9{height:33.375000pt;}
.hc{height:35.631871pt;}
.h14{height:36.640625pt;}
.h11{height:38.864583pt;}
.hd{height:41.113697pt;}
.he{height:41.640625pt;}
.h17{height:41.875000pt;}
.h1{height:43.000000pt;}
.h7{height:43.854610pt;}
.hf{height:46.595523pt;}
.h10{height:47.109375pt;}
.h6{height:52.077349pt;}
.h5{height:52.343750pt;}
.h12{height:52.843750pt;}
.h2{height:54.960938pt;}
.h16{height:58.406250pt;}
.h4{height:65.429688pt;}
.h3{height:70.664062pt;}
.h0{height:893.333333pt;}
.w0{width:618.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.465333pt;}
.xda{left:86.732000pt;}
.xaa{left:87.666667pt;}
.xd{left:88.666667pt;}
.xb{left:90.266667pt;}
.xfb{left:91.866667pt;}
.xef{left:92.798667pt;}
.x74{left:93.732000pt;}
.xb0{left:95.065333pt;}
.xad{left:96.000000pt;}
.x73{left:96.933333pt;}
.x6{left:104.666667pt;}
.x28{left:107.866667pt;}
.xc{left:111.333333pt;}
.xae{left:113.933333pt;}
.xd6{left:115.200000pt;}
.xa2{left:116.132000pt;}
.x31{left:117.132000pt;}
.x56{left:118.732000pt;}
.x44{left:119.666667pt;}
.xcf{left:121.266667pt;}
.xee{left:122.266667pt;}
.xbe{left:123.200000pt;}
.x39{left:124.132000pt;}
.x20{left:126.732000pt;}
.xf2{left:128.933333pt;}
.x19{left:131.200000pt;}
.xd0{left:133.465333pt;}
.xff{left:134.398667pt;}
.x85{left:135.333333pt;}
.x89{left:136.666667pt;}
.x75{left:139.533333pt;}
.x11{left:140.798667pt;}
.xf5{left:147.200000pt;}
.x90{left:148.132000pt;}
.x6c{left:150.065333pt;}
.xa1{left:152.666667pt;}
.x34{left:153.933333pt;}
.x40{left:155.866667pt;}
.xd8{left:156.798667pt;}
.xfe{left:157.732000pt;}
.x93{left:159.666667pt;}
.x58{left:161.933333pt;}
.x66{left:164.465333pt;}
.x3d{left:165.732000pt;}
.x5e{left:168.000000pt;}
.x5b{left:169.600000pt;}
.x84{left:172.465333pt;}
.xd7{left:175.666667pt;}
.xa3{left:176.666667pt;}
.x9a{left:177.598667pt;}
.x12{left:178.866667pt;}
.x32{left:180.132000pt;}
.xdb{left:181.733333pt;}
.x2d{left:183.333333pt;}
.x78{left:184.666667pt;}
.xe2{left:185.598667pt;}
.x51{left:186.533333pt;}
.x3a{left:188.132000pt;}
.x98{left:189.465333pt;}
.x70{left:191.066667pt;}
.x1a{left:193.265333pt;}
.xa9{left:194.866667pt;}
.x4b{left:196.132000pt;}
.xb8{left:197.465333pt;}
.x8a{left:201.265333pt;}
.x4f{left:202.265333pt;}
.x8c{left:203.200000pt;}
.x6b{left:204.132000pt;}
.xe{left:205.733333pt;}
.xeb{left:208.000000pt;}
.x7d{left:209.598667pt;}
.x9{left:210.533333pt;}
.xab{left:212.798667pt;}
.x3c{left:213.733333pt;}
.xc3{left:215.066667pt;}
.xb1{left:216.000000pt;}
.x8{left:217.932000pt;}
.x2e{left:219.866667pt;}
.x21{left:222.066667pt;}
.x35{left:225.598667pt;}
.xe7{left:226.866667pt;}
.x59{left:228.798667pt;}
.x7{left:229.733333pt;}
.x42{left:231.666667pt;}
.xa4{left:233.265333pt;}
.x55{left:234.866667pt;}
.x2{left:236.132000pt;}
.x71{left:237.733333pt;}
.x9b{left:239.066667pt;}
.x77{left:240.000000pt;}
.x52{left:240.932000pt;}
.xc4{left:241.932000pt;}
.x7c{left:244.465333pt;}
.x6d{left:246.400000pt;}
.xd4{left:248.000000pt;}
.x3e{left:249.598667pt;}
.xe8{left:250.533333pt;}
.x6e{left:252.465333pt;}
.xb6{left:253.465333pt;}
.xf0{left:254.733333pt;}
.x5{left:255.666667pt;}
.xed{left:256.666667pt;}
.xc7{left:257.598667pt;}
.x67{left:259.866667pt;}
.xf8{left:261.733333pt;}
.xf{left:263.333333pt;}
.xb9{left:264.932000pt;}
.x7e{left:268.465333pt;}
.x9c{left:270.400000pt;}
.x5f{left:273.265333pt;}
.x7b{left:274.533333pt;}
.x22{left:275.866667pt;}
.x94{left:279.666667pt;}
.xdd{left:280.932000pt;}
.x62{left:281.932000pt;}
.xdf{left:283.866667pt;}
.x91{left:285.733333pt;}
.xb3{left:287.333333pt;}
.x86{left:288.333333pt;}
.x4c{left:289.265333pt;}
.x3{left:293.465333pt;}
.x1b{left:294.400000pt;}
.xe1{left:295.666667pt;}
.x72{left:296.932000pt;}
.x7f{left:298.265333pt;}
.xea{left:299.200000pt;}
.xd5{left:302.066667pt;}
.x29{left:305.265333pt;}
.x41{left:307.200000pt;}
.x4d{left:310.066667pt;}
.xc9{left:312.000000pt;}
.x9d{left:313.598667pt;}
.xd2{left:315.533333pt;}
.xe3{left:317.132000pt;}
.x1c{left:318.400000pt;}
.x2a{left:320.666667pt;}
.x8b{left:322.533333pt;}
.x68{left:323.866667pt;}
.x37{left:327.666667pt;}
.x23{left:328.932000pt;}
.x60{left:329.932000pt;}
.x5c{left:330.866667pt;}
.x87{left:332.798667pt;}
.x3b{left:334.066667pt;}
.x63{left:335.666667pt;}
.x4e{left:337.265333pt;}
.x99{left:338.265333pt;}
.x92{left:339.866667pt;}
.x80{left:340.798667pt;}
.x6a{left:343.066667pt;}
.x79{left:345.265333pt;}
.x5a{left:346.532000pt;}
.xe6{left:348.466667pt;}
.x24{left:349.466667pt;}
.xdc{left:351.066667pt;}
.x2f{left:353.265333pt;}
.xfc{left:356.800000pt;}
.xf7{left:358.066667pt;}
.xa{left:359.066667pt;}
.xb2{left:360.666667pt;}
.x4a{left:361.598667pt;}
.xf9{left:362.865333pt;}
.x50{left:365.133333pt;}
.x48{left:366.400000pt;}
.xa5{left:367.666667pt;}
.x13{left:371.198667pt;}
.x61{left:373.133333pt;}
.xca{left:374.066667pt;}
.x30{left:376.000000pt;}
.x88{left:377.265333pt;}
.x45{left:378.532000pt;}
.x95{left:380.133333pt;}
.xcd{left:381.466667pt;}
.xc5{left:382.733333pt;}
.x53{left:384.000000pt;}
.xf6{left:387.198667pt;}
.x25{left:389.466667pt;}
.x14{left:390.400000pt;}
.x9f{left:392.932000pt;}
.x8d{left:393.932000pt;}
.xc8{left:395.865333pt;}
.x1d{left:400.333333pt;}
.x38{left:402.265333pt;}
.xb4{left:403.198667pt;}
.xe0{left:404.133333pt;}
.x15{left:405.466667pt;}
.x36{left:406.400000pt;}
.x81{left:408.000000pt;}
.x26{left:412.466667pt;}
.x16{left:414.733333pt;}
.x64{left:416.000000pt;}
.xac{left:417.932000pt;}
.x57{left:418.865333pt;}
.xb5{left:420.466667pt;}
.x1e{left:424.333333pt;}
.x2b{left:426.265333pt;}
.xaf{left:428.133333pt;}
.xa6{left:431.666667pt;}
.xbb{left:433.265333pt;}
.x17{left:434.865333pt;}
.x27{left:436.133333pt;}
.x96{left:437.466667pt;}
.xcb{left:444.133333pt;}
.x54{left:445.466667pt;}
.x18{left:448.666667pt;}
.x8e{left:450.532000pt;}
.xe9{left:453.733333pt;}
.xc2{left:454.733333pt;}
.xc0{left:456.333333pt;}
.xbd{left:457.265333pt;}
.xa7{left:459.198667pt;}
.xfa{left:461.733333pt;}
.x83{left:463.066667pt;}
.xd9{left:464.333333pt;}
.x49{left:465.932000pt;}
.xf3{left:466.865333pt;}
.x1f{left:467.865333pt;}
.xf4{left:468.800000pt;}
.xfd{left:471.333333pt;}
.xc1{left:473.265333pt;}
.x4{left:475.198667pt;}
.xb7{left:476.800000pt;}
.x46{left:478.066667pt;}
.x7a{left:479.666667pt;}
.x97{left:480.666667pt;}
.xbc{left:481.932000pt;}
.x65{left:483.532000pt;}
.x82{left:484.800000pt;}
.x2c{left:485.733333pt;}
.xe5{left:487.333333pt;}
.x43{left:488.333333pt;}
.xce{left:489.598667pt;}
.x69{left:491.865333pt;}
.xa0{left:493.133333pt;}
.x8f{left:494.066667pt;}
.xba{left:496.932000pt;}
.xec{left:500.133333pt;}
.x10{left:501.466667pt;}
.xa8{left:505.265333pt;}
.x3f{left:506.532000pt;}
.xcc{left:507.532000pt;}
.xe4{left:509.466667pt;}
.x33{left:512.666667pt;}
.x6f{left:514.265333pt;}
.x9e{left:517.733333pt;}
.xc6{left:519.333333pt;}
.xd1{left:520.932000pt;}
.x76{left:524.466667pt;}
.x47{left:526.733333pt;}
.xde{left:528.000000pt;}
.xd3{left:528.932000pt;}
.x5d{left:532.133333pt;}
.xf1{left:535.666667pt;}
.xbf{left:536.932000pt;}
}

