
    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_5bf663bee781a03865c166a2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;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_882352d47c7236cff236b9fe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd4f8522b162f77c32720a1d.woff')format("woff");}.ff4{font-family:ff4;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0deca919d964a7ec7796a652.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight: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_e2af498e10c49f528c89a6b5.woff')format("woff");}.ff9{font-family:ff9;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.246584,0.000000,-0.041187,0.246584,0,0);-ms-transform:matrix(0.246584,0.000000,-0.041187,0.246584,0,0);-webkit-transform:matrix(0.246584,0.000000,-0.041187,0.246584,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,-0.250000,0,0);-ms-transform: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(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-26.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.117570px;}
.v2{vertical-align:25.602000px;}
.v4{vertical-align:39.996000px;}
.ls10{letter-spacing:-1.905300px;}
.lsc{letter-spacing:-1.839600px;}
.ls9{letter-spacing:-0.518400px;}
.ls1{letter-spacing:-0.466271px;}
.ls6{letter-spacing:-0.459900px;}
.ls4{letter-spacing:-0.394200px;}
.ls3{letter-spacing:-0.328500px;}
.ls8{letter-spacing:-0.262800px;}
.ls11{letter-spacing:-0.259200px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.197100px;}
.lsa{letter-spacing:-0.131400px;}
.lse{letter-spacing:-0.086400px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.006666px;}
.lsd{letter-spacing:0.065700px;}
.ls0{letter-spacing:0.131400px;}
.lsb{letter-spacing:0.197100px;}
.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;}
}
.ws7a{word-spacing:-21.340800px;}
.ws66{word-spacing:-19.999500px;}
.ws2{word-spacing:-16.556400px;}
.ws69{word-spacing:-16.030800px;}
.ws1e{word-spacing:-14.585400px;}
.ws67{word-spacing:-13.999500px;}
.ws58{word-spacing:-13.438500px;}
.ws4c{word-spacing:-8.838000px;}
.ws6a{word-spacing:-3.087900px;}
.ws1d{word-spacing:-2.956500px;}
.ws75{word-spacing:-2.496600px;}
.ws3a{word-spacing:-2.299500px;}
.ws68{word-spacing:-2.168100px;}
.ws42{word-spacing:-1.773900px;}
.ws45{word-spacing:-1.576800px;}
.ws1{word-spacing:-1.451520px;}
.ws72{word-spacing:-1.248300px;}
.ws40{word-spacing:-1.116900px;}
.ws30{word-spacing:-1.051200px;}
.ws6c{word-spacing:-0.985500px;}
.ws64{word-spacing:-0.919800px;}
.ws6b{word-spacing:-0.854100px;}
.ws3e{word-spacing:-0.788400px;}
.ws6{word-spacing:-0.722700px;}
.ws56{word-spacing:-0.394200px;}
.ws29{word-spacing:-0.328500px;}
.ws5b{word-spacing:-0.262800px;}
.ws3f{word-spacing:-0.197100px;}
.ws5{word-spacing:0.000000px;}
.ws49{word-spacing:0.131400px;}
.ws3{word-spacing:0.197100px;}
.ws7c{word-spacing:0.262800px;}
.ws4{word-spacing:0.328500px;}
.ws41{word-spacing:0.394200px;}
.ws0{word-spacing:0.399661px;}
.wsf{word-spacing:0.459900px;}
.ws9{word-spacing:0.525600px;}
.ws14{word-spacing:0.591300px;}
.ws2a{word-spacing:0.657000px;}
.ws44{word-spacing:0.691200px;}
.ws27{word-spacing:0.985500px;}
.ws7{word-spacing:1.051200px;}
.ws43{word-spacing:1.116900px;}
.ws28{word-spacing:1.182600px;}
.wsa{word-spacing:1.248300px;}
.wsc{word-spacing:1.314000px;}
.ws77{word-spacing:1.379700px;}
.ws7d{word-spacing:1.708200px;}
.ws53{word-spacing:1.773900px;}
.ws63{word-spacing:1.839600px;}
.wsd{word-spacing:1.905300px;}
.ws65{word-spacing:1.971000px;}
.ws48{word-spacing:2.036700px;}
.ws26{word-spacing:2.102400px;}
.ws5f{word-spacing:2.299500px;}
.ws52{word-spacing:2.562300px;}
.ws8{word-spacing:2.628000px;}
.ws22{word-spacing:2.693700px;}
.ws73{word-spacing:2.825100px;}
.ws2b{word-spacing:3.219300px;}
.ws57{word-spacing:3.285000px;}
.ws4b{word-spacing:3.350700px;}
.ws5e{word-spacing:3.416400px;}
.ws1a{word-spacing:3.547800px;}
.ws4f{word-spacing:3.810600px;}
.ws62{word-spacing:4.073400px;}
.wsb{word-spacing:4.139100px;}
.ws1c{word-spacing:4.730400px;}
.ws47{word-spacing:4.796100px;}
.ws5c{word-spacing:4.993200px;}
.ws7b{word-spacing:5.124600px;}
.ws34{word-spacing:5.387400px;}
.wse{word-spacing:5.453100px;}
.ws39{word-spacing:5.518800px;}
.ws35{word-spacing:5.584500px;}
.ws25{word-spacing:5.650200px;}
.ws60{word-spacing:5.715900px;}
.ws6f{word-spacing:5.913000px;}
.ws18{word-spacing:6.175800px;}
.ws24{word-spacing:6.241500px;}
.ws12{word-spacing:6.307200px;}
.ws37{word-spacing:6.570000px;}
.ws1b{word-spacing:6.898500px;}
.ws11{word-spacing:6.964200px;}
.ws50{word-spacing:7.029900px;}
.ws3d{word-spacing:7.424100px;}
.ws38{word-spacing:7.555500px;}
.ws2e{word-spacing:7.621200px;}
.ws13{word-spacing:7.686900px;}
.ws78{word-spacing:7.752600px;}
.ws79{word-spacing:7.818300px;}
.ws4a{word-spacing:8.343900px;}
.ws23{word-spacing:8.409600px;}
.ws5d{word-spacing:8.475300px;}
.ws32{word-spacing:9.000900px;}
.ws54{word-spacing:9.066600px;}
.ws10{word-spacing:9.132300px;}
.ws74{word-spacing:9.198000px;}
.ws2f{word-spacing:9.789300px;}
.ws2d{word-spacing:9.855000px;}
.ws61{word-spacing:9.920700px;}
.ws4d{word-spacing:10.052100px;}
.ws19{word-spacing:10.117800px;}
.ws55{word-spacing:10.446300px;}
.ws3b{word-spacing:10.512000px;}
.ws4e{word-spacing:10.643400px;}
.ws16{word-spacing:10.709100px;}
.ws46{word-spacing:10.774800px;}
.ws51{word-spacing:10.971900px;}
.ws17{word-spacing:11.300400px;}
.ws71{word-spacing:11.694600px;}
.ws6e{word-spacing:11.891700px;}
.ws36{word-spacing:12.023100px;}
.ws6d{word-spacing:12.088800px;}
.ws1f{word-spacing:12.154500px;}
.ws33{word-spacing:12.680100px;}
.ws31{word-spacing:12.745800px;}
.ws76{word-spacing:12.811500px;}
.ws20{word-spacing:13.402800px;}
.ws2c{word-spacing:14.913900px;}
.ws3c{word-spacing:15.570900px;}
.ws5a{word-spacing:16.293600px;}
.ws59{word-spacing:16.490700px;}
.ws21{word-spacing:17.082000px;}
.ws70{word-spacing:17.673300px;}
.ws15{word-spacing:65.059200px;}
._2{margin-left:-7.161300px;}
._4{margin-left:-4.467600px;}
._3{margin-left:-2.725560px;}
._1{margin-left:-1.347840px;}
._0{width:1.132373px;}
._23{width:2.334253px;}
._9{width:4.119390px;}
._8{width:5.903330px;}
._1c{width:13.942807px;}
._14{width:15.212520px;}
._5{width:16.425000px;}
._6{width:18.088760px;}
._7{width:19.578600px;}
._e{width:21.407540px;}
._a{width:23.192100px;}
._f{width:24.471347px;}
._d{width:26.198827px;}
._b{width:28.185300px;}
._10{width:30.024900px;}
._15{width:31.505053px;}
._11{width:33.211350px;}
._16{width:34.608427px;}
._13{width:35.706960px;}
._17{width:37.251900px;}
._21{width:38.966800px;}
._24{width:41.459593px;}
._c{width:46.449900px;}
._19{width:48.370673px;}
._12{width:49.474080px;}
._1f{width:50.523300px;}
._20{width:51.705900px;}
._1e{width:53.382240px;}
._1a{width:54.630540px;}
._22{width:57.847860px;}
._18{width:62.415000px;}
._1b{width:65.208240px;}
._1d{width:85.795200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:0.720000px;}
.fs7{font-size:35.352000px;}
.fs6{font-size:50.592000px;}
.fs9{font-size:53.754000px;}
.fsb{font-size:55.998000px;}
.fs8{font-size:60.954000px;}
.fs1{font-size:65.700000px;}
.fs0{font-size:66.610199px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:79.998000px;}
.fs5{font-size:86.400000px;}
.fs2{font-size:103.680000px;}
.y0{bottom:0.000000px;}
.yad{bottom:226.432755px;}
.y94{bottom:237.238560px;}
.ye2{bottom:243.177120px;}
.y74{bottom:244.438650px;}
.yac{bottom:246.773475px;}
.y93{bottom:257.579280px;}
.ye1{bottom:263.517840px;}
.y73{bottom:263.879280px;}
.y6f{bottom:264.778560px;}
.yab{bottom:267.114195px;}
.y3d{bottom:268.915972px;}
.y92{bottom:277.920000px;}
.ye0{bottom:283.858560px;}
.y72{bottom:284.220000px;}
.y6e{bottom:285.119280px;}
.yaa{bottom:287.454915px;}
.y3c{bottom:289.256692px;}
.ydf{bottom:304.199280px;}
.y6c{bottom:305.449110px;}
.y6d{bottom:305.460000px;}
.ya9{bottom:307.795635px;}
.y90{bottom:308.836500px;}
.y3b{bottom:309.597412px;}
.y70{bottom:314.175000px;}
.ydd{bottom:324.540000px;}
.y6b{bottom:325.789830px;}
.ya8{bottom:327.955680px;}
.y36{bottom:329.937075px;}
.y3a{bottom:330.297840px;}
.yde{bottom:330.480000px;}
.y6a{bottom:345.949875px;}
.ya7{bottom:348.296400px;}
.y35{bottom:350.277795px;}
.y39{bottom:350.638560px;}
.ydc{bottom:361.440000px;}
.y69{bottom:366.290595px;}
.ya6{bottom:368.637120px;}
.y34{bottom:370.618515px;}
.y38{bottom:370.979280px;}
.y68{bottom:386.631315px;}
.ya5{bottom:388.977840px;}
.y33{bottom:390.959235px;}
.y37{bottom:391.320000px;}
.ydb{bottom:405.719280px;}
.y67{bottom:406.972035px;}
.ya4{bottom:409.318560px;}
.y32{bottom:411.299955px;}
.yd8{bottom:426.054915px;}
.yd9{bottom:426.060000px;}
.y66{bottom:427.312755px;}
.ya3{bottom:429.659280px;}
.y2f{bottom:431.451517px;}
.y31{bottom:431.460000px;}
.yda{bottom:432.000036px;}
.y30{bottom:437.400000px;}
.yd7{bottom:446.395635px;}
.y65{bottom:447.653475px;}
.ya0{bottom:449.997075px;}
.ya2{bottom:450.000000px;}
.y2e{bottom:451.792237px;}
.ybb{bottom:451.799280px;}
.ya1{bottom:455.940000px;}
.yd6{bottom:466.736355px;}
.y64{bottom:467.994195px;}
.y9f{bottom:470.337795px;}
.y2d{bottom:472.132957px;}
.yb9{bottom:472.140000px;}
.yba{bottom:478.080000px;}
.yd5{bottom:487.077075px;}
.y63{bottom:488.334915px;}
.y9e{bottom:490.678515px;}
.y2c{bottom:492.473677px;}
.y71{bottom:502.216500px;}
.yd4{bottom:507.417795px;}
.yb7{bottom:508.519500px;}
.y62{bottom:508.675635px;}
.y9d{bottom:511.019235px;}
.y2b{bottom:512.814397px;}
.yd3{bottom:527.758515px;}
.y61{bottom:529.016355px;}
.y9c{bottom:531.359955px;}
.y2a{bottom:533.155117px;}
.y29{bottom:536.934510px;}
.y91{bottom:540.508500px;}
.yd2{bottom:548.099235px;}
.y60{bottom:549.357075px;}
.y9a{bottom:551.514510px;}
.y9b{bottom:551.520000px;}
.y28{bottom:553.494195px;}
.yd1{bottom:568.259280px;}
.y5f{bottom:569.517120px;}
.y99{bottom:571.855230px;}
.y27{bottom:573.834915px;}
.yce{bottom:588.592755px;}
.ycf{bottom:588.600000px;}
.y5e{bottom:589.857840px;}
.y98{bottom:592.195950px;}
.y26{bottom:594.175635px;}
.yd0{bottom:594.540000px;}
.ycd{bottom:608.933475px;}
.y5d{bottom:610.198560px;}
.y97{bottom:612.536670px;}
.y25{bottom:614.516355px;}
.ycc{bottom:629.274195px;}
.y5c{bottom:630.539280px;}
.y96{bottom:632.877390px;}
.y24{bottom:634.857075px;}
.ycb{bottom:649.614915px;}
.y5b{bottom:650.880000px;}
.y95{bottom:653.218110px;}
.y23{bottom:655.017120px;}
.yca{bottom:669.955635px;}
.y8f{bottom:673.560000px;}
.y22{bottom:675.357840px;}
.y5a{bottom:675.540000px;}
.yc9{bottom:690.296355px;}
.y21{bottom:695.698560px;}
.y8e{bottom:695.880000px;}
.y59{bottom:710.636580px;}
.yc8{bottom:710.637075px;}
.y20{bottom:716.039280px;}
.y8d{bottom:730.964160px;}
.y58{bottom:730.977300px;}
.yc7{bottom:730.977795px;}
.y1f{bottom:736.380000px;}
.yb8{bottom:745.866000px;}
.y8c{bottom:751.304880px;}
.y57{bottom:751.318020px;}
.yc6{bottom:751.318515px;}
.y1e{bottom:758.700000px;}
.y8b{bottom:771.645600px;}
.yc5{bottom:771.659235px;}
.y53{bottom:771.660000px;}
.y56{bottom:782.998560px;}
.y8a{bottom:791.805645px;}
.y52{bottom:791.816400px;}
.yc4{bottom:791.819280px;}
.y1d{bottom:797.398560px;}
.y55{bottom:803.339280px;}
.y89{bottom:812.146365px;}
.yc2{bottom:812.155568px;}
.y51{bottom:812.157120px;}
.yc3{bottom:812.160000px;}
.y1c{bottom:817.739280px;}
.y54{bottom:823.680000px;}
.y88{bottom:832.487085px;}
.yc1{bottom:832.496288px;}
.y50{bottom:832.497840px;}
.y19{bottom:838.079280px;}
.y1b{bottom:838.080000px;}
.y1a{bottom:844.020000px;}
.y75{bottom:850.311000px;}
.y87{bottom:852.827805px;}
.yc0{bottom:852.837008px;}
.y4f{bottom:852.838560px;}
.y18{bottom:858.420000px;}
.y86{bottom:873.168525px;}
.ybf{bottom:873.177728px;}
.y4e{bottom:873.179280px;}
.y16{bottom:878.757840px;}
.y17{bottom:884.700000px;}
.y85{bottom:893.509245px;}
.y4c{bottom:893.510595px;}
.ybe{bottom:893.518448px;}
.y4d{bottom:893.520000px;}
.y15{bottom:899.098560px;}
.y84{bottom:913.849965px;}
.y4b{bottom:913.851315px;}
.ybd{bottom:913.859168px;}
.y14{bottom:919.439280px;}
.y83{bottom:934.190685px;}
.y4a{bottom:934.192035px;}
.ybc{bottom:934.199888px;}
.y13{bottom:939.780000px;}
.y82{bottom:954.531405px;}
.y49{bottom:954.532755px;}
.yb6{bottom:954.539280px;}
.y81{bottom:974.872125px;}
.y48{bottom:974.873475px;}
.yb3{bottom:974.877795px;}
.yb5{bottom:974.880000px;}
.y12{bottom:977.940000px;}
.yb4{bottom:980.820000px;}
.y80{bottom:995.212845px;}
.y47{bottom:995.214195px;}
.yb2{bottom:995.218515px;}
.y7f{bottom:1015.372890px;}
.y46{bottom:1015.374240px;}
.yb1{bottom:1015.378560px;}
.y11{bottom:1016.820000px;}
.y10{bottom:1022.760000px;}
.y7e{bottom:1035.713610px;}
.y45{bottom:1035.714960px;}
.yb0{bottom:1035.719280px;}
.yf{bottom:1037.160000px;}
.ye{bottom:1043.100000px;}
.y7d{bottom:1056.054330px;}
.y44{bottom:1056.055680px;}
.yae{bottom:1056.060000px;}
.yd{bottom:1057.500000px;}
.yaf{bottom:1062.000090px;}
.yc{bottom:1063.440000px;}
.y76{bottom:1071.064500px;}
.y7c{bottom:1076.395050px;}
.y43{bottom:1076.396400px;}
.yb{bottom:1077.840000px;}
.ya{bottom:1083.780000px;}
.y7b{bottom:1096.735770px;}
.y42{bottom:1096.737120px;}
.y9{bottom:1098.180000px;}
.y8{bottom:1104.119910px;}
.y7a{bottom:1117.076490px;}
.y41{bottom:1117.077840px;}
.y5{bottom:1118.519280px;}
.y7{bottom:1118.520000px;}
.y6{bottom:1124.460000px;}
.y79{bottom:1137.417210px;}
.y40{bottom:1137.418560px;}
.y3{bottom:1138.860000px;}
.y4{bottom:1144.800000px;}
.y78{bottom:1157.757930px;}
.y3f{bottom:1157.759280px;}
.y2{bottom:1177.020000px;}
.y77{bottom:1178.098650px;}
.y3e{bottom:1178.100000px;}
.y1{bottom:1209.780000px;}
.h5{height:0.684000px;}
.ha{height:50.987250px;}
.hd{height:54.173953px;}
.hb{height:61.230188px;}
.hc{height:61.430203px;}
.h6{height:64.448877px;}
.h2{height:64.480957px;}
.h1{height:65.374268px;}
.h4{height:66.213281px;}
.h7{height:72.562500px;}
.h9{height:79.598527px;}
.he{height:80.622984px;}
.h8{height:87.075000px;}
.hf{height:96.431484px;}
.h3{height:104.490000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:102.600000px;}
.x29{left:105.299107px;}
.x2f{left:111.960000px;}
.x37{left:120.895500px;}
.x17{left:122.760000px;}
.x41{left:129.799500px;}
.x18{left:133.920000px;}
.x19{left:152.100000px;}
.x1a{left:163.440000px;}
.x2d{left:174.778500px;}
.x2e{left:184.138500px;}
.x15{left:189.540090px;}
.x1c{left:194.400000px;}
.x16{left:200.700000px;}
.x1d{left:205.740000px;}
.x4{left:210.240000px;}
.x3e{left:229.320000px;}
.x42{left:234.177000px;}
.x3f{left:240.480000px;}
.x28{left:242.099647px;}
.x43{left:244.440078px;}
.x44{left:254.880000px;}
.xf{left:257.220022px;}
.x1e{left:262.440000px;}
.x1f{left:273.600000px;}
.x3d{left:285.835500px;}
.x5{left:288.180000px;}
.x2a{left:292.320000px;}
.x6{left:295.380000px;}
.x2b{left:299.340000px;}
.x10{left:308.520000px;}
.x11{left:315.720000px;}
.x3{left:346.860000px;}
.x40{left:348.615000px;}
.x36{left:381.616500px;}
.x7{left:383.220000px;}
.x8{left:390.780000px;}
.x26{left:396.354000px;}
.x30{left:398.872500px;}
.x27{left:405.714000px;}
.x4f{left:410.580000px;}
.x20{left:413.639550px;}
.x31{left:417.234000px;}
.x12{left:419.040000px;}
.x13{left:426.060000px;}
.x22{left:427.320000px;}
.x1b{left:435.779640px;}
.x35{left:458.280090px;}
.x2c{left:466.380000px;}
.x34{left:473.040000px;}
.x38{left:479.880607px;}
.x9{left:488.880000px;}
.x33{left:493.764000px;}
.xa{left:496.080000px;}
.x4a{left:501.651000px;}
.x4b{left:511.920144px;}
.x4c{left:524.700000px;}
.x21{left:542.879663px;}
.x45{left:566.279933px;}
.xb{left:591.120000px;}
.xc{left:598.140000px;}
.x14{left:656.280000px;}
.x46{left:663.838500px;}
.x39{left:675.715500px;}
.x47{left:680.578500px;}
.x24{left:682.740000px;}
.x25{left:689.760000px;}
.x3a{left:694.795500px;}
.xd{left:700.020000px;}
.x32{left:702.204000px;}
.xe{left:707.040000px;}
.x48{left:721.257000px;}
.x3b{left:730.260000px;}
.x49{left:731.520510px;}
.x3c{left:741.600000px;}
.x4d{left:752.040342px;}
.x4e{left:764.820000px;}
.x2{left:810.538500px;}
.x23{left:811.620000px;}
@media print{
.v3{vertical-align:-23.466667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.437840pt;}
.v2{vertical-align:22.757333pt;}
.v4{vertical-align:35.552000pt;}
.ls10{letter-spacing:-1.693600pt;}
.lsc{letter-spacing:-1.635200pt;}
.ls9{letter-spacing:-0.460800pt;}
.ls1{letter-spacing:-0.414463pt;}
.ls6{letter-spacing:-0.408800pt;}
.ls4{letter-spacing:-0.350400pt;}
.ls3{letter-spacing:-0.292000pt;}
.ls8{letter-spacing:-0.233600pt;}
.ls11{letter-spacing:-0.230400pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.175200pt;}
.lsa{letter-spacing:-0.116800pt;}
.lse{letter-spacing:-0.076800pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.005925pt;}
.lsd{letter-spacing:0.058400pt;}
.ls0{letter-spacing:0.116800pt;}
.lsb{letter-spacing:0.175200pt;}
.ws7a{word-spacing:-18.969600pt;}
.ws66{word-spacing:-17.777333pt;}
.ws2{word-spacing:-14.716800pt;}
.ws69{word-spacing:-14.249600pt;}
.ws1e{word-spacing:-12.964800pt;}
.ws67{word-spacing:-12.444000pt;}
.ws58{word-spacing:-11.945333pt;}
.ws4c{word-spacing:-7.856000pt;}
.ws6a{word-spacing:-2.744800pt;}
.ws1d{word-spacing:-2.628000pt;}
.ws75{word-spacing:-2.219200pt;}
.ws3a{word-spacing:-2.044000pt;}
.ws68{word-spacing:-1.927200pt;}
.ws42{word-spacing:-1.576800pt;}
.ws45{word-spacing:-1.401600pt;}
.ws1{word-spacing:-1.290240pt;}
.ws72{word-spacing:-1.109600pt;}
.ws40{word-spacing:-0.992800pt;}
.ws30{word-spacing:-0.934400pt;}
.ws6c{word-spacing:-0.876000pt;}
.ws64{word-spacing:-0.817600pt;}
.ws6b{word-spacing:-0.759200pt;}
.ws3e{word-spacing:-0.700800pt;}
.ws6{word-spacing:-0.642400pt;}
.ws56{word-spacing:-0.350400pt;}
.ws29{word-spacing:-0.292000pt;}
.ws5b{word-spacing:-0.233600pt;}
.ws3f{word-spacing:-0.175200pt;}
.ws5{word-spacing:0.000000pt;}
.ws49{word-spacing:0.116800pt;}
.ws3{word-spacing:0.175200pt;}
.ws7c{word-spacing:0.233600pt;}
.ws4{word-spacing:0.292000pt;}
.ws41{word-spacing:0.350400pt;}
.ws0{word-spacing:0.355254pt;}
.wsf{word-spacing:0.408800pt;}
.ws9{word-spacing:0.467200pt;}
.ws14{word-spacing:0.525600pt;}
.ws2a{word-spacing:0.584000pt;}
.ws44{word-spacing:0.614400pt;}
.ws27{word-spacing:0.876000pt;}
.ws7{word-spacing:0.934400pt;}
.ws43{word-spacing:0.992800pt;}
.ws28{word-spacing:1.051200pt;}
.wsa{word-spacing:1.109600pt;}
.wsc{word-spacing:1.168000pt;}
.ws77{word-spacing:1.226400pt;}
.ws7d{word-spacing:1.518400pt;}
.ws53{word-spacing:1.576800pt;}
.ws63{word-spacing:1.635200pt;}
.wsd{word-spacing:1.693600pt;}
.ws65{word-spacing:1.752000pt;}
.ws48{word-spacing:1.810400pt;}
.ws26{word-spacing:1.868800pt;}
.ws5f{word-spacing:2.044000pt;}
.ws52{word-spacing:2.277600pt;}
.ws8{word-spacing:2.336000pt;}
.ws22{word-spacing:2.394400pt;}
.ws73{word-spacing:2.511200pt;}
.ws2b{word-spacing:2.861600pt;}
.ws57{word-spacing:2.920000pt;}
.ws4b{word-spacing:2.978400pt;}
.ws5e{word-spacing:3.036800pt;}
.ws1a{word-spacing:3.153600pt;}
.ws4f{word-spacing:3.387200pt;}
.ws62{word-spacing:3.620800pt;}
.wsb{word-spacing:3.679200pt;}
.ws1c{word-spacing:4.204800pt;}
.ws47{word-spacing:4.263200pt;}
.ws5c{word-spacing:4.438400pt;}
.ws7b{word-spacing:4.555200pt;}
.ws34{word-spacing:4.788800pt;}
.wse{word-spacing:4.847200pt;}
.ws39{word-spacing:4.905600pt;}
.ws35{word-spacing:4.964000pt;}
.ws25{word-spacing:5.022400pt;}
.ws60{word-spacing:5.080800pt;}
.ws6f{word-spacing:5.256000pt;}
.ws18{word-spacing:5.489600pt;}
.ws24{word-spacing:5.548000pt;}
.ws12{word-spacing:5.606400pt;}
.ws37{word-spacing:5.840000pt;}
.ws1b{word-spacing:6.132000pt;}
.ws11{word-spacing:6.190400pt;}
.ws50{word-spacing:6.248800pt;}
.ws3d{word-spacing:6.599200pt;}
.ws38{word-spacing:6.716000pt;}
.ws2e{word-spacing:6.774400pt;}
.ws13{word-spacing:6.832800pt;}
.ws78{word-spacing:6.891200pt;}
.ws79{word-spacing:6.949600pt;}
.ws4a{word-spacing:7.416800pt;}
.ws23{word-spacing:7.475200pt;}
.ws5d{word-spacing:7.533600pt;}
.ws32{word-spacing:8.000800pt;}
.ws54{word-spacing:8.059200pt;}
.ws10{word-spacing:8.117600pt;}
.ws74{word-spacing:8.176000pt;}
.ws2f{word-spacing:8.701600pt;}
.ws2d{word-spacing:8.760000pt;}
.ws61{word-spacing:8.818400pt;}
.ws4d{word-spacing:8.935200pt;}
.ws19{word-spacing:8.993600pt;}
.ws55{word-spacing:9.285600pt;}
.ws3b{word-spacing:9.344000pt;}
.ws4e{word-spacing:9.460800pt;}
.ws16{word-spacing:9.519200pt;}
.ws46{word-spacing:9.577600pt;}
.ws51{word-spacing:9.752800pt;}
.ws17{word-spacing:10.044800pt;}
.ws71{word-spacing:10.395200pt;}
.ws6e{word-spacing:10.570400pt;}
.ws36{word-spacing:10.687200pt;}
.ws6d{word-spacing:10.745600pt;}
.ws1f{word-spacing:10.804000pt;}
.ws33{word-spacing:11.271200pt;}
.ws31{word-spacing:11.329600pt;}
.ws76{word-spacing:11.388000pt;}
.ws20{word-spacing:11.913600pt;}
.ws2c{word-spacing:13.256800pt;}
.ws3c{word-spacing:13.840800pt;}
.ws5a{word-spacing:14.483200pt;}
.ws59{word-spacing:14.658400pt;}
.ws21{word-spacing:15.184000pt;}
.ws70{word-spacing:15.709600pt;}
.ws15{word-spacing:57.830400pt;}
._2{margin-left:-6.365600pt;}
._4{margin-left:-3.971200pt;}
._3{margin-left:-2.422720pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.006554pt;}
._23{width:2.074892pt;}
._9{width:3.661680pt;}
._8{width:5.247405pt;}
._1c{width:12.393606pt;}
._14{width:13.522240pt;}
._5{width:14.600000pt;}
._6{width:16.078898pt;}
._7{width:17.403200pt;}
._e{width:19.028925pt;}
._a{width:20.615200pt;}
._f{width:21.752308pt;}
._d{width:23.287846pt;}
._b{width:25.053600pt;}
._10{width:26.688800pt;}
._15{width:28.004492pt;}
._11{width:29.521200pt;}
._16{width:30.763046pt;}
._13{width:31.739520pt;}
._17{width:33.112800pt;}
._21{width:34.637155pt;}
._24{width:36.852972pt;}
._c{width:41.288800pt;}
._19{width:42.996154pt;}
._12{width:43.976960pt;}
._1f{width:44.909600pt;}
._20{width:45.960800pt;}
._1e{width:47.450880pt;}
._1a{width:48.560480pt;}
._22{width:51.420320pt;}
._18{width:55.480000pt;}
._1b{width:57.962880pt;}
._1d{width:76.262400pt;}
.fs3{font-size:0.640000pt;}
.fs7{font-size:31.424000pt;}
.fs6{font-size:44.970667pt;}
.fs9{font-size:47.781333pt;}
.fsb{font-size:49.776000pt;}
.fs8{font-size:54.181333pt;}
.fs1{font-size:58.400000pt;}
.fs0{font-size:59.209066pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:71.109333pt;}
.fs5{font-size:76.800000pt;}
.fs2{font-size:92.160000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:201.273560pt;}
.y94{bottom:210.878720pt;}
.ye2{bottom:216.157440pt;}
.y74{bottom:217.278800pt;}
.yac{bottom:219.354200pt;}
.y93{bottom:228.959360pt;}
.ye1{bottom:234.238080pt;}
.y73{bottom:234.559360pt;}
.y6f{bottom:235.358720pt;}
.yab{bottom:237.434840pt;}
.y3d{bottom:239.036420pt;}
.y92{bottom:247.040000pt;}
.ye0{bottom:252.318720pt;}
.y72{bottom:252.640000pt;}
.y6e{bottom:253.439360pt;}
.yaa{bottom:255.515480pt;}
.y3c{bottom:257.117060pt;}
.ydf{bottom:270.399360pt;}
.y6c{bottom:271.510320pt;}
.y6d{bottom:271.520000pt;}
.ya9{bottom:273.596120pt;}
.y90{bottom:274.521333pt;}
.y3b{bottom:275.197700pt;}
.y70{bottom:279.266667pt;}
.ydd{bottom:288.480000pt;}
.y6b{bottom:289.590960pt;}
.ya8{bottom:291.516160pt;}
.y36{bottom:293.277400pt;}
.y3a{bottom:293.598080pt;}
.yde{bottom:293.760000pt;}
.y6a{bottom:307.511000pt;}
.ya7{bottom:309.596800pt;}
.y35{bottom:311.358040pt;}
.y39{bottom:311.678720pt;}
.ydc{bottom:321.280000pt;}
.y69{bottom:325.591640pt;}
.ya6{bottom:327.677440pt;}
.y34{bottom:329.438680pt;}
.y38{bottom:329.759360pt;}
.y68{bottom:343.672280pt;}
.ya5{bottom:345.758080pt;}
.y33{bottom:347.519320pt;}
.y37{bottom:347.840000pt;}
.ydb{bottom:360.639360pt;}
.y67{bottom:361.752920pt;}
.ya4{bottom:363.838720pt;}
.y32{bottom:365.599960pt;}
.yd8{bottom:378.715480pt;}
.yd9{bottom:378.720000pt;}
.y66{bottom:379.833560pt;}
.ya3{bottom:381.919360pt;}
.y2f{bottom:383.512460pt;}
.y31{bottom:383.520000pt;}
.yda{bottom:384.000032pt;}
.y30{bottom:388.800000pt;}
.yd7{bottom:396.796120pt;}
.y65{bottom:397.914200pt;}
.ya0{bottom:399.997400pt;}
.ya2{bottom:400.000000pt;}
.y2e{bottom:401.593100pt;}
.ybb{bottom:401.599360pt;}
.ya1{bottom:405.280000pt;}
.yd6{bottom:414.876760pt;}
.y64{bottom:415.994840pt;}
.y9f{bottom:418.078040pt;}
.y2d{bottom:419.673740pt;}
.yb9{bottom:419.680000pt;}
.yba{bottom:424.960000pt;}
.yd5{bottom:432.957400pt;}
.y63{bottom:434.075480pt;}
.y9e{bottom:436.158680pt;}
.y2c{bottom:437.754380pt;}
.y71{bottom:446.414667pt;}
.yd4{bottom:451.038040pt;}
.yb7{bottom:452.017333pt;}
.y62{bottom:452.156120pt;}
.y9d{bottom:454.239320pt;}
.y2b{bottom:455.835020pt;}
.yd3{bottom:469.118680pt;}
.y61{bottom:470.236760pt;}
.y9c{bottom:472.319960pt;}
.y2a{bottom:473.915660pt;}
.y29{bottom:477.275120pt;}
.y91{bottom:480.452000pt;}
.yd2{bottom:487.199320pt;}
.y60{bottom:488.317400pt;}
.y9a{bottom:490.235120pt;}
.y9b{bottom:490.240000pt;}
.y28{bottom:491.994840pt;}
.yd1{bottom:505.119360pt;}
.y5f{bottom:506.237440pt;}
.y99{bottom:508.315760pt;}
.y27{bottom:510.075480pt;}
.yce{bottom:523.193560pt;}
.ycf{bottom:523.200000pt;}
.y5e{bottom:524.318080pt;}
.y98{bottom:526.396400pt;}
.y26{bottom:528.156120pt;}
.yd0{bottom:528.480000pt;}
.ycd{bottom:541.274200pt;}
.y5d{bottom:542.398720pt;}
.y97{bottom:544.477040pt;}
.y25{bottom:546.236760pt;}
.ycc{bottom:559.354840pt;}
.y5c{bottom:560.479360pt;}
.y96{bottom:562.557680pt;}
.y24{bottom:564.317400pt;}
.ycb{bottom:577.435480pt;}
.y5b{bottom:578.560000pt;}
.y95{bottom:580.638320pt;}
.y23{bottom:582.237440pt;}
.yca{bottom:595.516120pt;}
.y8f{bottom:598.720000pt;}
.y22{bottom:600.318080pt;}
.y5a{bottom:600.480000pt;}
.yc9{bottom:613.596760pt;}
.y21{bottom:618.398720pt;}
.y8e{bottom:618.560000pt;}
.y59{bottom:631.676960pt;}
.yc8{bottom:631.677400pt;}
.y20{bottom:636.479360pt;}
.y8d{bottom:649.745920pt;}
.y58{bottom:649.757600pt;}
.yc7{bottom:649.758040pt;}
.y1f{bottom:654.560000pt;}
.yb8{bottom:662.992000pt;}
.y8c{bottom:667.826560pt;}
.y57{bottom:667.838240pt;}
.yc6{bottom:667.838680pt;}
.y1e{bottom:674.400000pt;}
.y8b{bottom:685.907200pt;}
.yc5{bottom:685.919320pt;}
.y53{bottom:685.920000pt;}
.y56{bottom:695.998720pt;}
.y8a{bottom:703.827240pt;}
.y52{bottom:703.836800pt;}
.yc4{bottom:703.839360pt;}
.y1d{bottom:708.798720pt;}
.y55{bottom:714.079360pt;}
.y89{bottom:721.907880pt;}
.yc2{bottom:721.916060pt;}
.y51{bottom:721.917440pt;}
.yc3{bottom:721.920000pt;}
.y1c{bottom:726.879360pt;}
.y54{bottom:732.160000pt;}
.y88{bottom:739.988520pt;}
.yc1{bottom:739.996700pt;}
.y50{bottom:739.998080pt;}
.y19{bottom:744.959360pt;}
.y1b{bottom:744.960000pt;}
.y1a{bottom:750.240000pt;}
.y75{bottom:755.832000pt;}
.y87{bottom:758.069160pt;}
.yc0{bottom:758.077340pt;}
.y4f{bottom:758.078720pt;}
.y18{bottom:763.040000pt;}
.y86{bottom:776.149800pt;}
.ybf{bottom:776.157980pt;}
.y4e{bottom:776.159360pt;}
.y16{bottom:781.118080pt;}
.y17{bottom:786.400000pt;}
.y85{bottom:794.230440pt;}
.y4c{bottom:794.231640pt;}
.ybe{bottom:794.238620pt;}
.y4d{bottom:794.240000pt;}
.y15{bottom:799.198720pt;}
.y84{bottom:812.311080pt;}
.y4b{bottom:812.312280pt;}
.ybd{bottom:812.319260pt;}
.y14{bottom:817.279360pt;}
.y83{bottom:830.391720pt;}
.y4a{bottom:830.392920pt;}
.ybc{bottom:830.399900pt;}
.y13{bottom:835.360000pt;}
.y82{bottom:848.472360pt;}
.y49{bottom:848.473560pt;}
.yb6{bottom:848.479360pt;}
.y81{bottom:866.553000pt;}
.y48{bottom:866.554200pt;}
.yb3{bottom:866.558040pt;}
.yb5{bottom:866.560000pt;}
.y12{bottom:869.280000pt;}
.yb4{bottom:871.840000pt;}
.y80{bottom:884.633640pt;}
.y47{bottom:884.634840pt;}
.yb2{bottom:884.638680pt;}
.y7f{bottom:902.553680pt;}
.y46{bottom:902.554880pt;}
.yb1{bottom:902.558720pt;}
.y11{bottom:903.840000pt;}
.y10{bottom:909.120000pt;}
.y7e{bottom:920.634320pt;}
.y45{bottom:920.635520pt;}
.yb0{bottom:920.639360pt;}
.yf{bottom:921.920000pt;}
.ye{bottom:927.200000pt;}
.y7d{bottom:938.714960pt;}
.y44{bottom:938.716160pt;}
.yae{bottom:938.720000pt;}
.yd{bottom:940.000000pt;}
.yaf{bottom:944.000080pt;}
.yc{bottom:945.280000pt;}
.y76{bottom:952.057333pt;}
.y7c{bottom:956.795600pt;}
.y43{bottom:956.796800pt;}
.yb{bottom:958.080000pt;}
.ya{bottom:963.360000pt;}
.y7b{bottom:974.876240pt;}
.y42{bottom:974.877440pt;}
.y9{bottom:976.160000pt;}
.y8{bottom:981.439920pt;}
.y7a{bottom:992.956880pt;}
.y41{bottom:992.958080pt;}
.y5{bottom:994.239360pt;}
.y7{bottom:994.240000pt;}
.y6{bottom:999.520000pt;}
.y79{bottom:1011.037520pt;}
.y40{bottom:1011.038720pt;}
.y3{bottom:1012.320000pt;}
.y4{bottom:1017.600000pt;}
.y78{bottom:1029.118160pt;}
.y3f{bottom:1029.119360pt;}
.y2{bottom:1046.240000pt;}
.y77{bottom:1047.198800pt;}
.y3e{bottom:1047.200000pt;}
.y1{bottom:1075.360000pt;}
.h5{height:0.608000pt;}
.ha{height:45.322000pt;}
.hd{height:48.154625pt;}
.hb{height:54.426833pt;}
.hc{height:54.604625pt;}
.h6{height:57.287891pt;}
.h2{height:57.316406pt;}
.h1{height:58.110460pt;}
.h4{height:58.856250pt;}
.h7{height:64.500000pt;}
.h9{height:70.754246pt;}
.he{height:71.664875pt;}
.h8{height:77.400000pt;}
.hf{height:85.716875pt;}
.h3{height:92.880000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:91.200000pt;}
.x29{left:93.599207pt;}
.x2f{left:99.520000pt;}
.x37{left:107.462667pt;}
.x17{left:109.120000pt;}
.x41{left:115.377333pt;}
.x18{left:119.040000pt;}
.x19{left:135.200000pt;}
.x1a{left:145.280000pt;}
.x2d{left:155.358667pt;}
.x2e{left:163.678667pt;}
.x15{left:168.480080pt;}
.x1c{left:172.800000pt;}
.x16{left:178.400000pt;}
.x1d{left:182.880000pt;}
.x4{left:186.880000pt;}
.x3e{left:203.840000pt;}
.x42{left:208.157333pt;}
.x3f{left:213.760000pt;}
.x28{left:215.199687pt;}
.x43{left:217.280069pt;}
.x44{left:226.560000pt;}
.xf{left:228.640020pt;}
.x1e{left:233.280000pt;}
.x1f{left:243.200000pt;}
.x3d{left:254.076000pt;}
.x5{left:256.160000pt;}
.x2a{left:259.840000pt;}
.x6{left:262.560000pt;}
.x2b{left:266.080000pt;}
.x10{left:274.240000pt;}
.x11{left:280.640000pt;}
.x3{left:308.320000pt;}
.x40{left:309.880000pt;}
.x36{left:339.214667pt;}
.x7{left:340.640000pt;}
.x8{left:347.360000pt;}
.x26{left:352.314667pt;}
.x30{left:354.553333pt;}
.x27{left:360.634667pt;}
.x4f{left:364.960000pt;}
.x20{left:367.679600pt;}
.x31{left:370.874667pt;}
.x12{left:372.480000pt;}
.x13{left:378.720000pt;}
.x22{left:379.840000pt;}
.x1b{left:387.359680pt;}
.x35{left:407.360080pt;}
.x2c{left:414.560000pt;}
.x34{left:420.480000pt;}
.x38{left:426.560540pt;}
.x9{left:434.560000pt;}
.x33{left:438.901333pt;}
.xa{left:440.960000pt;}
.x4a{left:445.912000pt;}
.x4b{left:455.040128pt;}
.x4c{left:466.400000pt;}
.x21{left:482.559700pt;}
.x45{left:503.359940pt;}
.xb{left:525.440000pt;}
.xc{left:531.680000pt;}
.x14{left:583.360000pt;}
.x46{left:590.078667pt;}
.x39{left:600.636000pt;}
.x47{left:604.958667pt;}
.x24{left:606.880000pt;}
.x25{left:613.120000pt;}
.x3a{left:617.596000pt;}
.xd{left:622.240000pt;}
.x32{left:624.181333pt;}
.xe{left:628.480000pt;}
.x48{left:641.117333pt;}
.x3b{left:649.120000pt;}
.x49{left:650.240453pt;}
.x3c{left:659.200000pt;}
.x4d{left:668.480304pt;}
.x4e{left:679.840000pt;}
.x2{left:720.478667pt;}
.x23{left:721.440000pt;}
}

