
    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_24fca6eab79c50bd983e4aee.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_9108d82ab5f610c9cd916065.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_fa73ee6fbf8022fdff5a7e96.woff')format("woff");}.ff3{font-family:ff3;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;src:url('chunks/assets/font_cb67fe8ea97d49f0cf320819.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b6d36276ab50407d041be2a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239258;font-style:normal;font-weight: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_ffeddf2ce7e3b376b9d4bfc4.woff')format("woff");}.ff6{font-family:ff6;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;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-77.759136px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.304704px;}
.ls12{letter-spacing:-0.278208px;}
.ls10{letter-spacing:-0.185328px;}
.ls2a{letter-spacing:-0.132480px;}
.ls2d{letter-spacing:-0.079488px;}
.ls21{letter-spacing:-0.066816px;}
.ls22{letter-spacing:-0.046368px;}
.ls23{letter-spacing:-0.033120px;}
.ls19{letter-spacing:-0.014400px;}
.ls2c{letter-spacing:-0.013248px;}
.ls14{letter-spacing:-0.006624px;}
.ls11{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.001200px;}
.ls27{letter-spacing:0.006624px;}
.ls28{letter-spacing:0.013248px;}
.ls1a{letter-spacing:0.019872px;}
.ls18{letter-spacing:0.021600px;}
.ls1f{letter-spacing:0.033120px;}
.ls1b{letter-spacing:0.039744px;}
.ls1c{letter-spacing:0.046368px;}
.ls1{letter-spacing:0.052992px;}
.ls2b{letter-spacing:0.057600px;}
.ls20{letter-spacing:0.058464px;}
.ls26{letter-spacing:0.059616px;}
.ls24{letter-spacing:0.064800px;}
.ls1e{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.072864px;}
.ls15{letter-spacing:0.079488px;}
.ls16{letter-spacing:0.086112px;}
.ls17{letter-spacing:0.092736px;}
.ls8{letter-spacing:0.099360px;}
.ls6{letter-spacing:0.105984px;}
.lsa{letter-spacing:0.112608px;}
.ls4{letter-spacing:0.119232px;}
.ls5{letter-spacing:0.125856px;}
.ls7{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.139104px;}
.lse{letter-spacing:0.145728px;}
.ls3{letter-spacing:0.152352px;}
.lsd{letter-spacing:0.158976px;}
.ls0{letter-spacing:0.172224px;}
.lsf{letter-spacing:0.178848px;}
.ls9{letter-spacing:0.185472px;}
.ls1d{letter-spacing:0.225216px;}
.ls25{letter-spacing:59.344416px;}
.lsc{letter-spacing:1079.281440px;}
.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;}
}
.ws6a{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.679232px;}
.ws51{word-spacing:-16.593120px;}
.ws6b{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.255296px;}
.ws4{word-spacing:-0.894240px;}
.ws58{word-spacing:-0.874368px;}
.ws7d{word-spacing:-0.847872px;}
.ws81{word-spacing:-0.715392px;}
.ws7{word-spacing:-0.152352px;}
.ws1e{word-spacing:-0.145728px;}
.ws6{word-spacing:-0.139104px;}
.ws13{word-spacing:-0.132480px;}
.ws31{word-spacing:-0.125856px;}
.ws5d{word-spacing:-0.119232px;}
.ws11{word-spacing:-0.112608px;}
.ws38{word-spacing:-0.105984px;}
.ws28{word-spacing:-0.099360px;}
.ws37{word-spacing:-0.092736px;}
.ws2b{word-spacing:-0.086112px;}
.ws65{word-spacing:-0.079488px;}
.ws68{word-spacing:-0.072864px;}
.ws4d{word-spacing:-0.066240px;}
.ws7a{word-spacing:-0.064800px;}
.ws6d{word-spacing:-0.057600px;}
.ws5{word-spacing:-0.052992px;}
.ws66{word-spacing:-0.046368px;}
.ws3d{word-spacing:-0.039744px;}
.ws64{word-spacing:-0.033120px;}
.ws20{word-spacing:-0.021600px;}
.ws82{word-spacing:-0.013248px;}
.ws80{word-spacing:-0.006624px;}
.ws83{word-spacing:-0.001200px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.006624px;}
.ws2{word-spacing:0.008424px;}
.ws7e{word-spacing:0.013248px;}
.ws32{word-spacing:0.014400px;}
.ws69{word-spacing:0.033120px;}
.ws67{word-spacing:0.046368px;}
.ws7f{word-spacing:0.079488px;}
.ws6c{word-spacing:0.132480px;}
.ws63{word-spacing:0.300672px;}
.wsb{word-spacing:0.589536px;}
.ws1b{word-spacing:0.602784px;}
.ws4b{word-spacing:0.616032px;}
.ws26{word-spacing:0.622656px;}
.ws79{word-spacing:1.311552px;}
.ws22{word-spacing:1.318176px;}
.ws77{word-spacing:1.357920px;}
.ws34{word-spacing:2.013696px;}
.ws45{word-spacing:2.026944px;}
.ws1a{word-spacing:2.060064px;}
.ws29{word-spacing:2.748960px;}
.ws47{word-spacing:2.768832px;}
.ws9{word-spacing:2.775456px;}
.ws53{word-spacing:2.815200px;}
.ws30{word-spacing:3.444480px;}
.ws60{word-spacing:3.470976px;}
.ws56{word-spacing:3.477600px;}
.ws39{word-spacing:3.490848px;}
.ws52{word-spacing:3.504096px;}
.ws3a{word-spacing:4.166496px;}
.ws76{word-spacing:4.179744px;}
.ws2a{word-spacing:4.206240px;}
.wsc{word-spacing:4.212864px;}
.ws3f{word-spacing:4.232736px;}
.ws15{word-spacing:4.895136px;}
.ws43{word-spacing:4.928256px;}
.ws54{word-spacing:4.934880px;}
.wse{word-spacing:5.630400px;}
.ws8{word-spacing:5.637024px;}
.ws57{word-spacing:5.643648px;}
.ws5f{word-spacing:5.656896px;}
.ws59{word-spacing:6.345792px;}
.ws36{word-spacing:6.359040px;}
.ws6f{word-spacing:6.378912px;}
.ws6e{word-spacing:6.398784px;}
.ws21{word-spacing:7.054560px;}
.ws5e{word-spacing:7.081056px;}
.ws2c{word-spacing:7.100928px;}
.ws14{word-spacing:7.763328px;}
.ws27{word-spacing:7.789824px;}
.ws5c{word-spacing:7.803072px;}
.ws18{word-spacing:7.816320px;}
.ws50{word-spacing:7.822944px;}
.ws17{word-spacing:8.505216px;}
.ws4a{word-spacing:8.511840px;}
.ws19{word-spacing:8.518464px;}
.ws72{word-spacing:8.525088px;}
.ws74{word-spacing:8.538336px;}
.ws25{word-spacing:8.558208px;}
.ws55{word-spacing:9.220608px;}
.ws4e{word-spacing:9.247104px;}
.ws10{word-spacing:9.896256px;}
.ws41{word-spacing:9.942624px;}
.ws78{word-spacing:9.949248px;}
.ws70{word-spacing:10.671264px;}
.ws3e{word-spacing:10.677888px;}
.ws5a{word-spacing:10.691136px;}
.ws2d{word-spacing:11.413152px;}
.ws7c{word-spacing:11.459520px;}
.ws7b{word-spacing:11.499264px;}
.ws16{word-spacing:12.102048px;}
.ws49{word-spacing:12.161664px;}
.ws35{word-spacing:12.168288px;}
.ws24{word-spacing:12.837312px;}
.ws46{word-spacing:13.579200px;}
.wsa{word-spacing:14.261472px;}
.wsf{word-spacing:14.301216px;}
.ws33{word-spacing:15.685632px;}
.ws2f{word-spacing:15.698880px;}
.ws71{word-spacing:15.732000px;}
.ws44{word-spacing:15.751872px;}
.ws3b{word-spacing:15.818112px;}
.ws1c{word-spacing:16.381152px;}
.ws1d{word-spacing:17.169408px;}
.ws4c{word-spacing:17.202528px;}
.ws2e{word-spacing:18.613440px;}
.ws3c{word-spacing:19.315584px;}
.ws5b{word-spacing:19.335456px;}
.ws48{word-spacing:22.866048px;}
.ws75{word-spacing:24.356448px;}
.ws4f{word-spacing:25.098336px;}
.wsd{word-spacing:25.813728px;}
.ws62{word-spacing:27.946656px;}
.ws61{word-spacing:27.959904px;}
.ws42{word-spacing:28.695168px;}
.ws73{word-spacing:32.265504px;}
.ws23{word-spacing:32.980896px;}
.ws40{word-spacing:33.689664px;}
.ws12{word-spacing:41.684832px;}
._5{margin-left:-230.784000px;}
._2{margin-left:-7.233408px;}
._3{margin-left:-2.258784px;}
._1{margin-left:-1.258560px;}
._0{width:1.044576px;}
._4{width:195.838560px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:7.500000px;}
.yd2{bottom:101.460090px;}
.y58{bottom:105.059448px;}
.y66{bottom:106.859298px;}
.y86{bottom:107.398866px;}
.ya2{bottom:112.080522px;}
.yd1{bottom:120.360018px;}
.y57{bottom:123.959376px;}
.yf9{bottom:125.040090px;}
.y65{bottom:125.939730px;}
.y85{bottom:126.298794px;}
.ya1{bottom:130.980234px;}
.yd0{bottom:139.440450px;}
.y56{bottom:143.039808px;}
.y64{bottom:144.839658px;}
.yf8{bottom:145.200234px;}
.y84{bottom:145.379226px;}
.ya0{bottom:149.880162px;}
.ycf{bottom:157.081026px;}
.y55{bottom:161.939736px;}
.y63{bottom:163.920090px;}
.y83{bottom:164.279154px;}
.yf7{bottom:165.179874px;}
.yce{bottom:168.060450px;}
.y9f{bottom:168.960594px;}
.y54{bottom:181.020168px;}
.y62{bottom:182.820018px;}
.y82{bottom:183.359586px;}
.yf6{bottom:184.079802px;}
.y9e{bottom:187.860522px;}
.y53{bottom:195.960600px;}
.y61{bottom:197.760450px;}
.y81{bottom:202.259514px;}
.yf5{bottom:203.160234px;}
.ycd{bottom:204.780090px;}
.y9d{bottom:206.940954px;}
.y2f{bottom:218.460600px;}
.y80{bottom:221.159442px;}
.yf4{bottom:223.320378px;}
.ycc{bottom:223.680018px;}
.y9c{bottom:225.840882px;}
.y2e{bottom:237.355194px;}
.y7f{bottom:240.239874px;}
.ycb{bottom:242.760450px;}
.yf3{bottom:243.480522px;}
.y9b{bottom:244.740810px;}
.y2d{bottom:255.895770px;}
.y7e{bottom:259.139802px;}
.yca{bottom:260.400450px;}
.yf2{bottom:262.380450px;}
.y9a{bottom:263.821242px;}
.y2c{bottom:274.976202px;}
.yc9{bottom:275.158722px;}
.y7d{bottom:278.220234px;}
.y99{bottom:282.721170px;}
.y2b{bottom:294.235482px;}
.yc8{bottom:294.418002px;}
.y7c{bottom:297.120162px;}
.y98{bottom:297.840450px;}
.yf1{bottom:303.600450px;}
.y2a{bottom:313.315914px;}
.yc7{bottom:313.498434px;}
.y7b{bottom:316.020090px;}
.yf0{bottom:324.297570px;}
.y29{bottom:331.856490px;}
.yc6{bottom:332.398362px;}
.y7a{bottom:335.100522px;}
.yef{bottom:343.197498px;}
.y28{bottom:350.756418px;}
.yc5{bottom:351.298290px;}
.y79{bottom:354.000450px;}
.yee{bottom:362.277930px;}
.y27{bottom:370.196202px;}
.yc4{bottom:370.378722px;}
.y78{bottom:373.080450px;}
.yed{bottom:381.177858px;}
.y26{bottom:389.096130px;}
.yc3{bottom:389.278650px;}
.y77{bottom:393.778434px;}
.yec{bottom:400.077786px;}
.y25{bottom:408.176562px;}
.yc2{bottom:408.359082px;}
.y76{bottom:412.678362px;}
.yeb{bottom:419.158218px;}
.y24{bottom:427.076490px;}
.yc1{bottom:427.259010px;}
.y75{bottom:431.578290px;}
.yea{bottom:438.058146px;}
.y23{bottom:445.976418px;}
.yc0{bottom:446.158938px;}
.y74{bottom:450.658722px;}
.ye9{bottom:457.138578px;}
.y22{bottom:465.056850px;}
.ybf{bottom:465.239370px;}
.y60{bottom:467.939808px;}
.y73{bottom:469.558650px;}
.y52{bottom:471.899514px;}
.ye8{bottom:476.038506px;}
.y21{bottom:483.956778px;}
.ybe{bottom:484.139298px;}
.y5f{bottom:487.020240px;}
.y72{bottom:488.639082px;}
.y51{bottom:490.979946px;}
.ye7{bottom:495.118938px;}
.y20{bottom:503.037210px;}
.ybd{bottom:503.219730px;}
.y5e{bottom:505.920168px;}
.y71{bottom:507.539010px;}
.y50{bottom:509.879874px;}
.ye6{bottom:514.018866px;}
.y5d{bottom:520.860600px;}
.y1f{bottom:521.937138px;}
.ybc{bottom:522.119658px;}
.y70{bottom:526.438938px;}
.y4f{bottom:528.779802px;}
.ye5{bottom:532.918794px;}
.y1e{bottom:541.017570px;}
.ybb{bottom:541.019586px;}
.y6f{bottom:545.519370px;}
.y4e{bottom:547.860234px;}
.ye4{bottom:551.999226px;}
.y1d{bottom:559.558146px;}
.yba{bottom:560.100018px;}
.y6e{bottom:564.419298px;}
.y4d{bottom:566.760162px;}
.ye3{bottom:570.899154px;}
.yb9{bottom:575.040450px;}
.y6d{bottom:583.499730px;}
.y4c{bottom:585.840594px;}
.ye2{bottom:589.979586px;}
.y1c{bottom:597.897858px;}
.y6c{bottom:602.399658px;}
.y4b{bottom:604.740522px;}
.ye1{bottom:608.879514px;}
.yb8{bottom:613.920810px;}
.y1b{bottom:616.797786px;}
.y6b{bottom:621.299586px;}
.y4a{bottom:623.640450px;}
.ye0{bottom:627.779442px;}
.yb7{bottom:632.820738px;}
.y1a{bottom:635.878218px;}
.y6a{bottom:640.380018px;}
.y49{bottom:642.720450px;}
.ydf{bottom:646.859874px;}
.yb6{bottom:651.901170px;}
.y19{bottom:654.778146px;}
.y69{bottom:655.320450px;}
.y48{bottom:663.417570px;}
.yde{bottom:665.759802px;}
.yb5{bottom:670.801098px;}
.y18{bottom:673.318722px;}
.y47{bottom:682.317498px;}
.ydd{bottom:684.840234px;}
.yb4{bottom:689.520522px;}
.y17{bottom:692.399154px;}
.y46{bottom:701.397930px;}
.ydc{bottom:703.740162px;}
.yb3{bottom:708.779802px;}
.y16{bottom:711.658434px;}
.y45{bottom:720.297858px;}
.ydb{bottom:722.640090px;}
.yb2{bottom:727.679730px;}
.y15{bottom:730.738866px;}
.y44{bottom:739.378290px;}
.yda{bottom:741.720522px;}
.yb1{bottom:746.760162px;}
.y14{bottom:749.638794px;}
.y43{bottom:758.278218px;}
.yd9{bottom:760.620450px;}
.yb0{bottom:765.660090px;}
.y13{bottom:768.538722px;}
.y42{bottom:777.178146px;}
.y97{bottom:778.978218px;}
.yd8{bottom:779.700450px;}
.yaf{bottom:784.740522px;}
.y12{bottom:787.619154px;}
.y5c{bottom:793.199658px;}
.y41{bottom:796.258578px;}
.y96{bottom:797.878146px;}
.yd7{bottom:800.760450px;}
.yae{bottom:803.640450px;}
.y11{bottom:806.519082px;}
.y5b{bottom:812.099586px;}
.y40{bottom:815.158506px;}
.y95{bottom:816.958578px;}
.yad{bottom:818.580450px;}
.yd6{bottom:821.460450px;}
.y10{bottom:825.599514px;}
.y5a{bottom:831.180018px;}
.y3f{bottom:834.238938px;}
.y94{bottom:835.858506px;}
.yd5{bottom:841.800666px;}
.yf{bottom:844.499442px;}
.y59{bottom:846.120450px;}
.y3e{bottom:853.138866px;}
.y93{bottom:854.938938px;}
.yac{bottom:857.460450px;}
.yd4{bottom:861.239802px;}
.ye{bottom:863.399370px;}
.y3d{bottom:872.038794px;}
.yab{bottom:872.399154px;}
.y92{bottom:873.838866px;}
.yd3{bottom:877.440450px;}
.yd{bottom:882.479802px;}
.y3c{bottom:891.119226px;}
.yaa{bottom:891.479586px;}
.y91{bottom:892.738794px;}
.yc{bottom:901.020378px;}
.y3b{bottom:910.019154px;}
.ya9{bottom:910.379514px;}
.y90{bottom:911.819226px;}
.yb{bottom:920.100810px;}
.y3a{bottom:929.099586px;}
.ya8{bottom:929.279442px;}
.y8f{bottom:930.719154px;}
.ya{bottom:939.360090px;}
.y39{bottom:947.999514px;}
.ya7{bottom:948.359874px;}
.y8e{bottom:949.799586px;}
.y9{bottom:958.260018px;}
.y38{bottom:966.899442px;}
.ya6{bottom:966.900450px;}
.y8d{bottom:968.699514px;}
.y8{bottom:977.339802px;}
.y37{bottom:985.979874px;}
.y8c{bottom:987.599442px;}
.y7{bottom:996.239730px;}
.ya5{bottom:1001.820162px;}
.y36{bottom:1004.879802px;}
.y8b{bottom:1006.679874px;}
.ya4{bottom:1013.880450px;}
.y6{bottom:1015.320162px;}
.ya3{bottom:1023.420450px;}
.y35{bottom:1023.960234px;}
.y8a{bottom:1025.579802px;}
.y5{bottom:1034.220090px;}
.y34{bottom:1042.860162px;}
.y89{bottom:1044.660234px;}
.y4{bottom:1053.300522px;}
.y33{bottom:1061.760090px;}
.y88{bottom:1063.560162px;}
.y3{bottom:1072.200450px;}
.y32{bottom:1080.840522px;}
.y87{bottom:1082.460090px;}
.y2{bottom:1091.820432px;}
.y31{bottom:1099.740450px;}
.y68{bottom:1101.540522px;}
.y1{bottom:1115.940450px;}
.y30{bottom:1118.820450px;}
.y67{bottom:1120.440450px;}
.hf{height:25.031250px;}
.ha{height:40.985156px;}
.hb{height:49.583118px;}
.h9{height:61.423863px;}
.h2{height:65.010937px;}
.h8{height:65.011801px;}
.h3{height:65.013529px;}
.h4{height:66.757500px;}
.he{height:68.084282px;}
.hd{height:70.664062px;}
.hc{height:70.666655px;}
.h7{height:72.562500px;}
.h6{height:74.953125px;}
.h5{height:74.974149px;}
.h1{height:84.898125px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:75.000000px;}
.x1{left:127.680900px;}
.x13{left:154.680900px;}
.x12{left:157.020900px;}
.x6{left:170.880972px;}
.x14{left:181.680324px;}
.x11{left:211.020900px;}
.xe{left:215.520900px;}
.x10{left:234.059964px;}
.xf{left:236.760900px;}
.x2{left:310.380612px;}
.x7{left:333.240180px;}
.x5{left:343.320252px;}
.x4{left:356.280108px;}
.x8{left:405.241836px;}
.x3{left:446.460900px;}
.xd{left:487.680900px;}
.x9{left:584.520900px;}
.xa{left:619.080900px;}
.xb{left:631.680900px;}
.xc{left:764.520900px;}
@media print{
.v1{vertical-align:-69.119232pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.270848pt;}
.ls12{letter-spacing:-0.247296pt;}
.ls10{letter-spacing:-0.164736pt;}
.ls2a{letter-spacing:-0.117760pt;}
.ls2d{letter-spacing:-0.070656pt;}
.ls21{letter-spacing:-0.059392pt;}
.ls22{letter-spacing:-0.041216pt;}
.ls23{letter-spacing:-0.029440pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls2c{letter-spacing:-0.011776pt;}
.ls14{letter-spacing:-0.005888pt;}
.ls11{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.001067pt;}
.ls27{letter-spacing:0.005888pt;}
.ls28{letter-spacing:0.011776pt;}
.ls1a{letter-spacing:0.017664pt;}
.ls18{letter-spacing:0.019200pt;}
.ls1f{letter-spacing:0.029440pt;}
.ls1b{letter-spacing:0.035328pt;}
.ls1c{letter-spacing:0.041216pt;}
.ls1{letter-spacing:0.047104pt;}
.ls2b{letter-spacing:0.051200pt;}
.ls20{letter-spacing:0.051968pt;}
.ls26{letter-spacing:0.052992pt;}
.ls24{letter-spacing:0.057600pt;}
.ls1e{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.064768pt;}
.ls15{letter-spacing:0.070656pt;}
.ls16{letter-spacing:0.076544pt;}
.ls17{letter-spacing:0.082432pt;}
.ls8{letter-spacing:0.088320pt;}
.ls6{letter-spacing:0.094208pt;}
.lsa{letter-spacing:0.100096pt;}
.ls4{letter-spacing:0.105984pt;}
.ls5{letter-spacing:0.111872pt;}
.ls7{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.123648pt;}
.lse{letter-spacing:0.129536pt;}
.ls3{letter-spacing:0.135424pt;}
.lsd{letter-spacing:0.141312pt;}
.ls0{letter-spacing:0.153088pt;}
.lsf{letter-spacing:0.158976pt;}
.ls9{letter-spacing:0.164864pt;}
.ls1d{letter-spacing:0.200192pt;}
.ls25{letter-spacing:52.750592pt;}
.lsc{letter-spacing:959.361280pt;}
.ws6a{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.825984pt;}
.ws51{word-spacing:-14.749440pt;}
.ws6b{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.449152pt;}
.ws4{word-spacing:-0.794880pt;}
.ws58{word-spacing:-0.777216pt;}
.ws7d{word-spacing:-0.753664pt;}
.ws81{word-spacing:-0.635904pt;}
.ws7{word-spacing:-0.135424pt;}
.ws1e{word-spacing:-0.129536pt;}
.ws6{word-spacing:-0.123648pt;}
.ws13{word-spacing:-0.117760pt;}
.ws31{word-spacing:-0.111872pt;}
.ws5d{word-spacing:-0.105984pt;}
.ws11{word-spacing:-0.100096pt;}
.ws38{word-spacing:-0.094208pt;}
.ws28{word-spacing:-0.088320pt;}
.ws37{word-spacing:-0.082432pt;}
.ws2b{word-spacing:-0.076544pt;}
.ws65{word-spacing:-0.070656pt;}
.ws68{word-spacing:-0.064768pt;}
.ws4d{word-spacing:-0.058880pt;}
.ws7a{word-spacing:-0.057600pt;}
.ws6d{word-spacing:-0.051200pt;}
.ws5{word-spacing:-0.047104pt;}
.ws66{word-spacing:-0.041216pt;}
.ws3d{word-spacing:-0.035328pt;}
.ws64{word-spacing:-0.029440pt;}
.ws20{word-spacing:-0.019200pt;}
.ws82{word-spacing:-0.011776pt;}
.ws80{word-spacing:-0.005888pt;}
.ws83{word-spacing:-0.001067pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.005888pt;}
.ws2{word-spacing:0.007488pt;}
.ws7e{word-spacing:0.011776pt;}
.ws32{word-spacing:0.012800pt;}
.ws69{word-spacing:0.029440pt;}
.ws67{word-spacing:0.041216pt;}
.ws7f{word-spacing:0.070656pt;}
.ws6c{word-spacing:0.117760pt;}
.ws63{word-spacing:0.267264pt;}
.wsb{word-spacing:0.524032pt;}
.ws1b{word-spacing:0.535808pt;}
.ws4b{word-spacing:0.547584pt;}
.ws26{word-spacing:0.553472pt;}
.ws79{word-spacing:1.165824pt;}
.ws22{word-spacing:1.171712pt;}
.ws77{word-spacing:1.207040pt;}
.ws34{word-spacing:1.789952pt;}
.ws45{word-spacing:1.801728pt;}
.ws1a{word-spacing:1.831168pt;}
.ws29{word-spacing:2.443520pt;}
.ws47{word-spacing:2.461184pt;}
.ws9{word-spacing:2.467072pt;}
.ws53{word-spacing:2.502400pt;}
.ws30{word-spacing:3.061760pt;}
.ws60{word-spacing:3.085312pt;}
.ws56{word-spacing:3.091200pt;}
.ws39{word-spacing:3.102976pt;}
.ws52{word-spacing:3.114752pt;}
.ws3a{word-spacing:3.703552pt;}
.ws76{word-spacing:3.715328pt;}
.ws2a{word-spacing:3.738880pt;}
.wsc{word-spacing:3.744768pt;}
.ws3f{word-spacing:3.762432pt;}
.ws15{word-spacing:4.351232pt;}
.ws43{word-spacing:4.380672pt;}
.ws54{word-spacing:4.386560pt;}
.wse{word-spacing:5.004800pt;}
.ws8{word-spacing:5.010688pt;}
.ws57{word-spacing:5.016576pt;}
.ws5f{word-spacing:5.028352pt;}
.ws59{word-spacing:5.640704pt;}
.ws36{word-spacing:5.652480pt;}
.ws6f{word-spacing:5.670144pt;}
.ws6e{word-spacing:5.687808pt;}
.ws21{word-spacing:6.270720pt;}
.ws5e{word-spacing:6.294272pt;}
.ws2c{word-spacing:6.311936pt;}
.ws14{word-spacing:6.900736pt;}
.ws27{word-spacing:6.924288pt;}
.ws5c{word-spacing:6.936064pt;}
.ws18{word-spacing:6.947840pt;}
.ws50{word-spacing:6.953728pt;}
.ws17{word-spacing:7.560192pt;}
.ws4a{word-spacing:7.566080pt;}
.ws19{word-spacing:7.571968pt;}
.ws72{word-spacing:7.577856pt;}
.ws74{word-spacing:7.589632pt;}
.ws25{word-spacing:7.607296pt;}
.ws55{word-spacing:8.196096pt;}
.ws4e{word-spacing:8.219648pt;}
.ws10{word-spacing:8.796672pt;}
.ws41{word-spacing:8.837888pt;}
.ws78{word-spacing:8.843776pt;}
.ws70{word-spacing:9.485568pt;}
.ws3e{word-spacing:9.491456pt;}
.ws5a{word-spacing:9.503232pt;}
.ws2d{word-spacing:10.145024pt;}
.ws7c{word-spacing:10.186240pt;}
.ws7b{word-spacing:10.221568pt;}
.ws16{word-spacing:10.757376pt;}
.ws49{word-spacing:10.810368pt;}
.ws35{word-spacing:10.816256pt;}
.ws24{word-spacing:11.410944pt;}
.ws46{word-spacing:12.070400pt;}
.wsa{word-spacing:12.676864pt;}
.wsf{word-spacing:12.712192pt;}
.ws33{word-spacing:13.942784pt;}
.ws2f{word-spacing:13.954560pt;}
.ws71{word-spacing:13.984000pt;}
.ws44{word-spacing:14.001664pt;}
.ws3b{word-spacing:14.060544pt;}
.ws1c{word-spacing:14.561024pt;}
.ws1d{word-spacing:15.261696pt;}
.ws4c{word-spacing:15.291136pt;}
.ws2e{word-spacing:16.545280pt;}
.ws3c{word-spacing:17.169408pt;}
.ws5b{word-spacing:17.187072pt;}
.ws48{word-spacing:20.325376pt;}
.ws75{word-spacing:21.650176pt;}
.ws4f{word-spacing:22.309632pt;}
.wsd{word-spacing:22.945536pt;}
.ws62{word-spacing:24.841472pt;}
.ws61{word-spacing:24.853248pt;}
.ws42{word-spacing:25.506816pt;}
.ws73{word-spacing:28.680448pt;}
.ws23{word-spacing:29.316352pt;}
.ws40{word-spacing:29.946368pt;}
.ws12{word-spacing:37.053184pt;}
._5{margin-left:-205.141333pt;}
._2{margin-left:-6.429696pt;}
._3{margin-left:-2.007808pt;}
._1{margin-left:-1.118720pt;}
._0{width:0.928512pt;}
._4{width:174.078720pt;}
.fs6{font-size:21.333333pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:6.666667pt;}
.yd2{bottom:90.186747pt;}
.y58{bottom:93.386176pt;}
.y66{bottom:94.986043pt;}
.y86{bottom:95.465659pt;}
.ya2{bottom:99.627131pt;}
.yd1{bottom:106.986683pt;}
.y57{bottom:110.186112pt;}
.yf9{bottom:111.146747pt;}
.y65{bottom:111.946427pt;}
.y85{bottom:112.265595pt;}
.ya1{bottom:116.426875pt;}
.yd0{bottom:123.947067pt;}
.y56{bottom:127.146496pt;}
.y64{bottom:128.746363pt;}
.yf8{bottom:129.066875pt;}
.y84{bottom:129.225979pt;}
.ya0{bottom:133.226811pt;}
.ycf{bottom:139.627579pt;}
.y55{bottom:143.946432pt;}
.y63{bottom:145.706747pt;}
.y83{bottom:146.025915pt;}
.yf7{bottom:146.826555pt;}
.yce{bottom:149.387067pt;}
.y9f{bottom:150.187195pt;}
.y54{bottom:160.906816pt;}
.y62{bottom:162.506683pt;}
.y82{bottom:162.986299pt;}
.yf6{bottom:163.626491pt;}
.y9e{bottom:166.987131pt;}
.y53{bottom:174.187200pt;}
.y61{bottom:175.787067pt;}
.y81{bottom:179.786235pt;}
.yf5{bottom:180.586875pt;}
.ycd{bottom:182.026747pt;}
.y9d{bottom:183.947515pt;}
.y2f{bottom:194.187200pt;}
.y80{bottom:196.586171pt;}
.yf4{bottom:198.507003pt;}
.ycc{bottom:198.826683pt;}
.y9c{bottom:200.747451pt;}
.y2e{bottom:210.982395pt;}
.y7f{bottom:213.546555pt;}
.ycb{bottom:215.787067pt;}
.yf3{bottom:216.427131pt;}
.y9b{bottom:217.547387pt;}
.y2d{bottom:227.462907pt;}
.y7e{bottom:230.346491pt;}
.yca{bottom:231.467067pt;}
.yf2{bottom:233.227067pt;}
.y9a{bottom:234.507771pt;}
.y2c{bottom:244.423291pt;}
.yc9{bottom:244.585531pt;}
.y7d{bottom:247.306875pt;}
.y99{bottom:251.307707pt;}
.y2b{bottom:261.542651pt;}
.yc8{bottom:261.704891pt;}
.y7c{bottom:264.106811pt;}
.y98{bottom:264.747067pt;}
.yf1{bottom:269.867067pt;}
.y2a{bottom:278.503035pt;}
.yc7{bottom:278.665275pt;}
.y7b{bottom:280.906747pt;}
.yf0{bottom:288.264507pt;}
.y29{bottom:294.983547pt;}
.yc6{bottom:295.465211pt;}
.y7a{bottom:297.867131pt;}
.yef{bottom:305.064443pt;}
.y28{bottom:311.783483pt;}
.yc5{bottom:312.265147pt;}
.y79{bottom:314.667067pt;}
.yee{bottom:322.024827pt;}
.y27{bottom:329.063291pt;}
.yc4{bottom:329.225531pt;}
.y78{bottom:331.627067pt;}
.yed{bottom:338.824763pt;}
.y26{bottom:345.863227pt;}
.yc3{bottom:346.025467pt;}
.y77{bottom:350.025275pt;}
.yec{bottom:355.624699pt;}
.y25{bottom:362.823611pt;}
.yc2{bottom:362.985851pt;}
.y76{bottom:366.825211pt;}
.yeb{bottom:372.585083pt;}
.y24{bottom:379.623547pt;}
.yc1{bottom:379.785787pt;}
.y75{bottom:383.625147pt;}
.yea{bottom:389.385019pt;}
.y23{bottom:396.423483pt;}
.yc0{bottom:396.585723pt;}
.y74{bottom:400.585531pt;}
.ye9{bottom:406.345403pt;}
.y22{bottom:413.383867pt;}
.ybf{bottom:413.546107pt;}
.y60{bottom:415.946496pt;}
.y73{bottom:417.385467pt;}
.y52{bottom:419.466235pt;}
.ye8{bottom:423.145339pt;}
.y21{bottom:430.183803pt;}
.ybe{bottom:430.346043pt;}
.y5f{bottom:432.906880pt;}
.y72{bottom:434.345851pt;}
.y51{bottom:436.426619pt;}
.ye7{bottom:440.105723pt;}
.y20{bottom:447.144187pt;}
.ybd{bottom:447.306427pt;}
.y5e{bottom:449.706816pt;}
.y71{bottom:451.145787pt;}
.y50{bottom:453.226555pt;}
.ye6{bottom:456.905659pt;}
.y5d{bottom:462.987200pt;}
.y1f{bottom:463.944123pt;}
.ybc{bottom:464.106363pt;}
.y70{bottom:467.945723pt;}
.y4f{bottom:470.026491pt;}
.ye5{bottom:473.705595pt;}
.y1e{bottom:480.904507pt;}
.ybb{bottom:480.906299pt;}
.y6f{bottom:484.906107pt;}
.y4e{bottom:486.986875pt;}
.ye4{bottom:490.665979pt;}
.y1d{bottom:497.385019pt;}
.yba{bottom:497.866683pt;}
.y6e{bottom:501.706043pt;}
.y4d{bottom:503.786811pt;}
.ye3{bottom:507.465915pt;}
.yb9{bottom:511.147067pt;}
.y6d{bottom:518.666427pt;}
.y4c{bottom:520.747195pt;}
.ye2{bottom:524.426299pt;}
.y1c{bottom:531.464763pt;}
.y6c{bottom:535.466363pt;}
.y4b{bottom:537.547131pt;}
.ye1{bottom:541.226235pt;}
.yb8{bottom:545.707387pt;}
.y1b{bottom:548.264699pt;}
.y6b{bottom:552.266299pt;}
.y4a{bottom:554.347067pt;}
.ye0{bottom:558.026171pt;}
.yb7{bottom:562.507323pt;}
.y1a{bottom:565.225083pt;}
.y6a{bottom:569.226683pt;}
.y49{bottom:571.307067pt;}
.ydf{bottom:574.986555pt;}
.yb6{bottom:579.467707pt;}
.y19{bottom:582.025019pt;}
.y69{bottom:582.507067pt;}
.y48{bottom:589.704507pt;}
.yde{bottom:591.786491pt;}
.yb5{bottom:596.267643pt;}
.y18{bottom:598.505531pt;}
.y47{bottom:606.504443pt;}
.ydd{bottom:608.746875pt;}
.yb4{bottom:612.907131pt;}
.y17{bottom:615.465915pt;}
.y46{bottom:623.464827pt;}
.ydc{bottom:625.546811pt;}
.yb3{bottom:630.026491pt;}
.y16{bottom:632.585275pt;}
.y45{bottom:640.264763pt;}
.ydb{bottom:642.346747pt;}
.yb2{bottom:646.826427pt;}
.y15{bottom:649.545659pt;}
.y44{bottom:657.225147pt;}
.yda{bottom:659.307131pt;}
.yb1{bottom:663.786811pt;}
.y14{bottom:666.345595pt;}
.y43{bottom:674.025083pt;}
.yd9{bottom:676.107067pt;}
.yb0{bottom:680.586747pt;}
.y13{bottom:683.145531pt;}
.y42{bottom:690.825019pt;}
.y97{bottom:692.425083pt;}
.yd8{bottom:693.067067pt;}
.yaf{bottom:697.547131pt;}
.y12{bottom:700.105915pt;}
.y5c{bottom:705.066363pt;}
.y41{bottom:707.785403pt;}
.y96{bottom:709.225019pt;}
.yd7{bottom:711.787067pt;}
.yae{bottom:714.347067pt;}
.y11{bottom:716.905851pt;}
.y5b{bottom:721.866299pt;}
.y40{bottom:724.585339pt;}
.y95{bottom:726.185403pt;}
.yad{bottom:727.627067pt;}
.yd6{bottom:730.187067pt;}
.y10{bottom:733.866235pt;}
.y5a{bottom:738.826683pt;}
.y3f{bottom:741.545723pt;}
.y94{bottom:742.985339pt;}
.yd5{bottom:748.267259pt;}
.yf{bottom:750.666171pt;}
.y59{bottom:752.107067pt;}
.y3e{bottom:758.345659pt;}
.y93{bottom:759.945723pt;}
.yac{bottom:762.187067pt;}
.yd4{bottom:765.546491pt;}
.ye{bottom:767.466107pt;}
.y3d{bottom:775.145595pt;}
.yab{bottom:775.465915pt;}
.y92{bottom:776.745659pt;}
.yd3{bottom:779.947067pt;}
.yd{bottom:784.426491pt;}
.y3c{bottom:792.105979pt;}
.yaa{bottom:792.426299pt;}
.y91{bottom:793.545595pt;}
.yc{bottom:800.907003pt;}
.y3b{bottom:808.905915pt;}
.ya9{bottom:809.226235pt;}
.y90{bottom:810.505979pt;}
.yb{bottom:817.867387pt;}
.y3a{bottom:825.866299pt;}
.ya8{bottom:826.026171pt;}
.y8f{bottom:827.305915pt;}
.ya{bottom:834.986747pt;}
.y39{bottom:842.666235pt;}
.ya7{bottom:842.986555pt;}
.y8e{bottom:844.266299pt;}
.y9{bottom:851.786683pt;}
.y38{bottom:859.466171pt;}
.ya6{bottom:859.467067pt;}
.y8d{bottom:861.066235pt;}
.y8{bottom:868.746491pt;}
.y37{bottom:876.426555pt;}
.y8c{bottom:877.866171pt;}
.y7{bottom:885.546427pt;}
.ya5{bottom:890.506811pt;}
.y36{bottom:893.226491pt;}
.y8b{bottom:894.826555pt;}
.ya4{bottom:901.227067pt;}
.y6{bottom:902.506811pt;}
.ya3{bottom:909.707067pt;}
.y35{bottom:910.186875pt;}
.y8a{bottom:911.626491pt;}
.y5{bottom:919.306747pt;}
.y34{bottom:926.986811pt;}
.y89{bottom:928.586875pt;}
.y4{bottom:936.267131pt;}
.y33{bottom:943.786747pt;}
.y88{bottom:945.386811pt;}
.y3{bottom:953.067067pt;}
.y32{bottom:960.747131pt;}
.y87{bottom:962.186747pt;}
.y2{bottom:970.507051pt;}
.y31{bottom:977.547067pt;}
.y68{bottom:979.147131pt;}
.y1{bottom:991.947067pt;}
.y30{bottom:994.507067pt;}
.y67{bottom:995.947067pt;}
.hf{height:22.250000pt;}
.ha{height:36.431250pt;}
.hb{height:44.073883pt;}
.h9{height:54.598989pt;}
.h2{height:57.787500pt;}
.h8{height:57.788268pt;}
.h3{height:57.789804pt;}
.h4{height:59.340000pt;}
.he{height:60.519362pt;}
.hd{height:62.812500pt;}
.hc{height:62.814804pt;}
.h7{height:64.500000pt;}
.h6{height:66.625000pt;}
.h5{height:66.643688pt;}
.h1{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:66.666667pt;}
.x1{left:113.494133pt;}
.x13{left:137.494133pt;}
.x12{left:139.574133pt;}
.x6{left:151.894197pt;}
.x14{left:161.493621pt;}
.x11{left:187.574133pt;}
.xe{left:191.574133pt;}
.x10{left:208.053301pt;}
.xf{left:210.454133pt;}
.x2{left:275.893877pt;}
.x7{left:296.213493pt;}
.x5{left:305.173557pt;}
.x4{left:316.693429pt;}
.x8{left:360.214965pt;}
.x3{left:396.854133pt;}
.xd{left:433.494133pt;}
.x9{left:519.574133pt;}
.xa{left:550.294133pt;}
.xb{left:561.494133pt;}
.xc{left:679.574133pt;}
}

