
    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_c1beaaa7bcc34825e4079839.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_d9debd067dbce4eb7963df02.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_8222814421d23adb94d8bb75.woff')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-12.000000px;}
.v3{vertical-align:-10.200000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.200000px;}
.v4{vertical-align:12.000000px;}
.v2{vertical-align:41.998500px;}
.v5{vertical-align:48.001200px;}
.ls25{letter-spacing:-1.212000px;}
.ls17{letter-spacing:-1.206000px;}
.lsa{letter-spacing:-0.906000px;}
.ls9{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.606000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls2c{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.018000px;}
.ls1f{letter-spacing:-0.015300px;}
.ls0{letter-spacing:-0.014400px;}
.ls8{letter-spacing:-0.013200px;}
.ls16{letter-spacing:-0.012000px;}
.ls18{letter-spacing:-0.010200px;}
.ls5{letter-spacing:-0.009600px;}
.ls1{letter-spacing:-0.007200px;}
.lsb{letter-spacing:-0.006600px;}
.ls2{letter-spacing:-0.006000px;}
.ls19{letter-spacing:-0.005100px;}
.ls4{letter-spacing:-0.004800px;}
.lsd{letter-spacing:-0.004200px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.004200px;}
.ls6{letter-spacing:0.006000px;}
.ls23{letter-spacing:0.013500px;}
.lsf{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.042000px;}
.ls26{letter-spacing:0.042042px;}
.ls22{letter-spacing:0.894000px;}
.ls28{letter-spacing:14.580000px;}
.ls27{letter-spacing:14.640000px;}
.ls24{letter-spacing:16.500000px;}
.ls21{letter-spacing:16.530000px;}
.ls1e{letter-spacing:162.930000px;}
.ls13{letter-spacing:169.110000px;}
.ls11{letter-spacing:188.772420px;}
.ls10{letter-spacing:193.129680px;}
.ls1a{letter-spacing:196.729680px;}
.ls1b{letter-spacing:197.172420px;}
.ls1d{letter-spacing:205.170000px;}
.ls12{letter-spacing:219.090000px;}
.ls20{letter-spacing:229.607100px;}
.ls14{letter-spacing:484.739700px;}
.ls7{letter-spacing:929.160000px;}
.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;}
}
.ws3e{word-spacing:-497.489700px;}
.ws5f{word-spacing:-14.994000px;}
.ws6c{word-spacing:-14.988000px;}
.ws88{word-spacing:-14.982000px;}
.ws3a{word-spacing:-12.750000px;}
.ws3b{word-spacing:-12.744900px;}
.ws41{word-spacing:-12.000000px;}
.ws43{word-spacing:-11.995200px;}
.ws72{word-spacing:-11.263500px;}
.ws37{word-spacing:-11.250000px;}
.ws42{word-spacing:-9.000000px;}
.ws2e{word-spacing:-2.160000px;}
.ws1{word-spacing:-2.152800px;}
.ws38{word-spacing:-2.039400px;}
.ws33{word-spacing:-1.800000px;}
.ws47{word-spacing:-1.620000px;}
.ws8e{word-spacing:-1.440000px;}
.ws9a{word-spacing:-1.411200px;}
.ws25{word-spacing:-1.380000px;}
.ws19{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.260000px;}
.wsa3{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.142400px;}
.ws64{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.765600px;}
.ws9e{word-spacing:-0.662400px;}
.ws61{word-spacing:-0.660000px;}
.ws62{word-spacing:-0.540000px;}
.ws89{word-spacing:-0.420000px;}
.wsd{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.180000px;}
.ws2c{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:0.060000px;}
.ws9f{word-spacing:0.120000px;}
.ws53{word-spacing:0.240000px;}
.ws40{word-spacing:0.341700px;}
.ws21{word-spacing:0.360000px;}
.ws4e{word-spacing:0.362100px;}
.ws4a{word-spacing:0.420000px;}
.ws8f{word-spacing:0.474000px;}
.ws13{word-spacing:0.475200px;}
.wsa7{word-spacing:0.480000px;}
.wsa6{word-spacing:0.532800px;}
.ws9b{word-spacing:0.537600px;}
.ws32{word-spacing:0.600000px;}
.ws99{word-spacing:0.654000px;}
.ws70{word-spacing:0.660000px;}
.wsa8{word-spacing:0.662400px;}
.ws44{word-spacing:0.780000px;}
.ws8b{word-spacing:0.840000px;}
.ws7{word-spacing:0.897600px;}
.ws6f{word-spacing:0.900000px;}
.ws36{word-spacing:1.075200px;}
.ws15{word-spacing:1.079400px;}
.wse{word-spacing:1.080000px;}
.ws5{word-spacing:1.195200px;}
.wsb{word-spacing:1.200000px;}
.ws4{word-spacing:1.204800px;}
.ws87{word-spacing:1.254600px;}
.wsc{word-spacing:1.257600px;}
.ws4c{word-spacing:1.259700px;}
.ws1f{word-spacing:1.260000px;}
.ws4d{word-spacing:1.264800px;}
.ws84{word-spacing:1.320000px;}
.wsa0{word-spacing:1.377600px;}
.ws34{word-spacing:1.440000px;}
.ws46{word-spacing:1.494000px;}
.ws1b{word-spacing:1.500000px;}
.ws3{word-spacing:1.506000px;}
.wsa1{word-spacing:1.617600px;}
.ws17{word-spacing:1.620000px;}
.wsa2{word-spacing:1.680000px;}
.ws2{word-spacing:1.792800px;}
.ws0{word-spacing:1.800000px;}
.wsa{word-spacing:1.857600px;}
.ws2a{word-spacing:1.860000px;}
.wsf{word-spacing:1.920000px;}
.ws12{word-spacing:1.977600px;}
.ws26{word-spacing:1.980000px;}
.ws2d{word-spacing:2.040000px;}
.ws9c{word-spacing:2.097600px;}
.ws8c{word-spacing:2.160000px;}
.ws14{word-spacing:2.280000px;}
.ws1a{word-spacing:2.340000px;}
.ws96{word-spacing:2.400000px;}
.ws81{word-spacing:2.454000px;}
.wsaa{word-spacing:2.577600px;}
.ws6e{word-spacing:2.580000px;}
.ws31{word-spacing:2.640000px;}
.ws65{word-spacing:2.760000px;}
.wsac{word-spacing:2.817600px;}
.ws50{word-spacing:2.820000px;}
.ws49{word-spacing:2.874000px;}
.ws30{word-spacing:2.940000px;}
.ws9{word-spacing:3.000000px;}
.wsa9{word-spacing:3.057600px;}
.wsa5{word-spacing:3.062400px;}
.ws18{word-spacing:3.120000px;}
.ws95{word-spacing:3.180000px;}
.wsad{word-spacing:3.182400px;}
.ws8a{word-spacing:3.300000px;}
.ws9d{word-spacing:3.355200px;}
.wsab{word-spacing:3.417600px;}
.ws6d{word-spacing:3.534000px;}
.ws83{word-spacing:3.780000px;}
.ws94{word-spacing:4.020000px;}
.ws66{word-spacing:4.080000px;}
.ws28{word-spacing:4.380000px;}
.ws27{word-spacing:4.440000px;}
.ws23{word-spacing:4.560000px;}
.ws92{word-spacing:4.620000px;}
.ws2b{word-spacing:4.674000px;}
.ws51{word-spacing:4.734000px;}
.ws45{word-spacing:4.740000px;}
.ws1c{word-spacing:4.800000px;}
.wsa4{word-spacing:4.977600px;}
.ws48{word-spacing:4.980000px;}
.ws71{word-spacing:5.149500px;}
.ws90{word-spacing:5.220000px;}
.ws11{word-spacing:5.577600px;}
.ws22{word-spacing:5.640000px;}
.ws97{word-spacing:5.880000px;}
.ws10{word-spacing:6.120000px;}
.ws93{word-spacing:6.360000px;}
.ws8d{word-spacing:6.420000px;}
.ws2f{word-spacing:6.660000px;}
.ws4b{word-spacing:6.960000px;}
.ws63{word-spacing:7.200000px;}
.ws85{word-spacing:7.620000px;}
.ws98{word-spacing:7.980000px;}
.ws4f{word-spacing:8.040000px;}
.ws60{word-spacing:8.160000px;}
.ws29{word-spacing:8.580000px;}
.ws67{word-spacing:10.440000px;}
.ws86{word-spacing:11.220000px;}
.ws1d{word-spacing:11.640000px;}
.ws1e{word-spacing:13.560000px;}
.ws91{word-spacing:13.740000px;}
.ws52{word-spacing:19.380000px;}
.ws7f{word-spacing:36.009600px;}
.ws7e{word-spacing:60.009600px;}
.ws75{word-spacing:69.829200px;}
.ws79{word-spacing:85.119000px;}
.ws77{word-spacing:102.102000px;}
.ws7d{word-spacing:110.629200px;}
.ws78{word-spacing:111.513714px;}
.ws76{word-spacing:115.893714px;}
.ws5b{word-spacing:123.221100px;}
.ws7b{word-spacing:127.612200px;}
.ws3d{word-spacing:127.658100px;}
.ws5d{word-spacing:131.559600px;}
.ws5a{word-spacing:135.950700px;}
.ws7c{word-spacing:137.013714px;}
.ws7a{word-spacing:141.393714px;}
.ws57{word-spacing:148.670100px;}
.ws58{word-spacing:148.680300px;}
.ws3f{word-spacing:153.168300px;}
.ws5c{word-spacing:161.369100px;}
.ws59{word-spacing:161.460900px;}
.ws56{word-spacing:174.241500px;}
.ws55{word-spacing:186.930300px;}
.ws6a{word-spacing:191.311200px;}
.ws3c{word-spacing:191.382600px;}
.ws6b{word-spacing:216.903000px;}
.ws74{word-spacing:387.829500px;}
.ws69{word-spacing:446.489700px;}
.ws73{word-spacing:607.088700px;}
.ws54{word-spacing:684.822900px;}
.ws5e{word-spacing:863.792100px;}
.ws80{word-spacing:888.660000px;}
.ws39{word-spacing:1188.039900px;}
.ws68{word-spacing:1197.939000px;}
._13{margin-left:-255.178500px;}
._3c{margin-left:-16.134000px;}
._7{margin-left:-9.266400px;}
._8{margin-left:-7.746000px;}
._2{margin-left:-6.559200px;}
._3{margin-left:-5.299200px;}
._b{margin-left:-3.880800px;}
._9{margin-left:-2.640000px;}
._6{margin-left:-1.339200px;}
._4{width:3.924000px;}
._1a{width:7.623000px;}
._19{width:9.244200px;}
._54{width:10.924800px;}
._5{width:11.944800px;}
._1{width:13.147200px;}
._0{width:15.854400px;}
._a{width:24.114000px;}
._c{width:30.000000px;}
._50{width:93.605400px;}
._4e{width:97.925100px;}
._4f{width:114.846900px;}
._42{width:119.763300px;}
._46{width:128.285400px;}
._f{width:140.346900px;}
._49{width:145.263300px;}
._44{width:147.908400px;}
._32{width:155.045100px;}
._2e{width:161.282400px;}
._e{width:165.903000px;}
._24{width:167.708400px;}
._2c{width:169.809600px;}
._33{width:172.624800px;}
._34{width:178.989600px;}
._27{width:180.432900px;}
._2f{width:182.457600px;}
._2a{width:186.848700px;}
._25{width:191.770200px;}
._21{width:193.157400px;}
._22{width:195.804300px;}
._2b{width:198.068700px;}
._17{width:204.066300px;}
._1d{width:205.922700px;}
._1f{width:208.018800px;}
._1e{width:217.198800px;}
._11{width:229.627500px;}
._40{width:259.324800px;}
._3f{width:264.608400px;}
._52{width:270.906900px;}
._51{width:304.862700px;}
._53{width:331.030200px;}
._18{width:347.539500px;}
._1b{width:358.030200px;}
._4d{width:370.025400px;}
._14{width:382.459200px;}
._43{width:409.565700px;}
._3d{width:426.849600px;}
._31{width:435.693000px;}
._45{width:441.517800px;}
._3e{width:449.111100px;}
._37{width:459.239700px;}
._41{width:480.302700px;}
._29{width:487.524300px;}
._4a{width:500.167200px;}
._47{width:505.746600px;}
._4b{width:511.504500px;}
._30{width:520.684500px;}
._48{width:551.167200px;}
._4c{width:565.268700px;}
._2d{width:566.655900px;}
._35{width:576.131700px;}
._12{width:578.064600px;}
._d{width:598.546200px;}
._1c{width:618.415800px;}
._10{width:621.134100px;}
._39{width:635.709900px;}
._26{width:669.976800px;}
._23{width:698.276700px;}
._28{width:715.203600px;}
._3b{width:720.528000px;}
._20{width:722.358900px;}
._3a{width:746.028000px;}
._15{width:752.367300px;}
._38{width:992.465100px;}
._36{width:1000.931100px;}
._16{width:1117.435500px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.220000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:77.385150px;}
.y10e{bottom:108.434400px;}
.y27{bottom:108.435000px;}
.ye3{bottom:108.435150px;}
.y52{bottom:109.080000px;}
.y26{bottom:121.335000px;}
.y10d{bottom:121.574400px;}
.ye2{bottom:122.985150px;}
.y51{bottom:125.235000px;}
.y79{bottom:125.280000px;}
.ybe{bottom:125.565000px;}
.y10c{bottom:134.730000px;}
.ye1{bottom:137.549550px;}
.y50{bottom:141.390000px;}
.y78{bottom:141.465000px;}
.ybd{bottom:142.050000px;}
.y10b{bottom:147.870000px;}
.ye0{bottom:152.113950px;}
.y4f{bottom:157.545000px;}
.y77{bottom:157.665000px;}
.y9a{bottom:157.680000px;}
.ybc{bottom:158.535000px;}
.ydf{bottom:166.663950px;}
.y4e{bottom:173.715000px;}
.y76{bottom:173.865000px;}
.ybb{bottom:175.035000px;}
.y10a{bottom:175.050000px;}
.yde{bottom:181.229550px;}
.y13f{bottom:183.074400px;}
.y4d{bottom:189.870000px;}
.y75{bottom:190.065000px;}
.y109{bottom:191.430000px;}
.yba{bottom:191.520000px;}
.y99{bottom:191.880000px;}
.ydd{bottom:195.795150px;}
.y13e{bottom:195.974400px;}
.y4c{bottom:206.025000px;}
.y74{bottom:206.250000px;}
.yb9{bottom:208.005000px;}
.y13d{bottom:208.874400px;}
.y24{bottom:210.356400px;}
.ydc{bottom:220.980000px;}
.y13c{bottom:221.790000px;}
.y4b{bottom:222.180000px;}
.y108{bottom:222.675000px;}
.y23{bottom:223.256400px;}
.yb8{bottom:224.490000px;}
.y13b{bottom:234.690000px;}
.ydb{bottom:234.735600px;}
.y22{bottom:236.172000px;}
.y4a{bottom:238.335000px;}
.yb7{bottom:240.975000px;}
.y98{bottom:241.455000px;}
.y13a{bottom:247.590000px;}
.yda{bottom:248.490300px;}
.y21{bottom:249.072000px;}
.y49{bottom:254.505000px;}
.y97{bottom:257.655000px;}
.y139{bottom:260.490000px;}
.yd9{bottom:262.245000px;}
.y73{bottom:264.975000px;}
.y48{bottom:270.660000px;}
.y107{bottom:271.470000px;}
.y138{bottom:273.405600px;}
.y96{bottom:273.855000px;}
.y20{bottom:274.737600px;}
.yb6{bottom:275.460000px;}
.y72{bottom:279.555000px;}
.y137{bottom:286.305600px;}
.y1f{bottom:287.637600px;}
.y106{bottom:287.850000px;}
.yd8{bottom:288.750000px;}
.y95{bottom:290.055000px;}
.y71{bottom:294.135000px;}
.y136{bottom:299.205600px;}
.y1e{bottom:300.537600px;}
.yd7{bottom:302.505000px;}
.y105{bottom:304.215000px;}
.y47{bottom:304.815000px;}
.y94{bottom:306.255000px;}
.y70{bottom:308.715000px;}
.y135{bottom:312.105600px;}
.y1d{bottom:313.437600px;}
.yd6{bottom:316.260000px;}
.y104{bottom:320.595000px;}
.y93{bottom:322.455000px;}
.y6f{bottom:323.295000px;}
.y134{bottom:325.020000px;}
.yb5{bottom:325.335000px;}
.y1c{bottom:326.353200px;}
.y46{bottom:327.870000px;}
.yd5{bottom:330.015000px;}
.y103{bottom:336.975000px;}
.y133{bottom:337.920000px;}
.y92{bottom:338.655000px;}
.y1b{bottom:339.253200px;}
.yb4{bottom:341.820000px;}
.y6e{bottom:350.640000px;}
.y132{bottom:350.820000px;}
.y1a{bottom:352.153200px;}
.y102{bottom:353.340000px;}
.y91{bottom:354.855000px;}
.yd4{bottom:356.520000px;}
.yb3{bottom:358.305000px;}
.y131{bottom:363.735600px;}
.y6d{bottom:364.409400px;}
.y19{bottom:365.068800px;}
.y101{bottom:369.720000px;}
.y90{bottom:371.055000px;}
.yb2{bottom:374.790000px;}
.y45{bottom:376.440000px;}
.y130{bottom:376.635600px;}
.y18{bottom:377.968800px;}
.y6c{bottom:378.194700px;}
.yd3{bottom:383.025000px;}
.y100{bottom:386.085000px;}
.y12f{bottom:389.535600px;}
.y17{bottom:390.868800px;}
.yb1{bottom:391.275000px;}
.y6b{bottom:391.964700px;}
.y44{bottom:392.610000px;}
.yd2{bottom:396.780000px;}
.y12e{bottom:402.435600px;}
.yff{bottom:402.465000px;}
.y16{bottom:403.768800px;}
.y8f{bottom:405.255000px;}
.y6a{bottom:405.750000px;}
.yb0{bottom:407.760000px;}
.y43{bottom:408.765000px;}
.y12d{bottom:415.351200px;}
.y15{bottom:416.684400px;}
.yfe{bottom:418.830000px;}
.y69{bottom:419.520000px;}
.yd1{bottom:423.300000px;}
.yaf{bottom:424.245000px;}
.y42{bottom:424.920000px;}
.y12c{bottom:428.251200px;}
.y14{bottom:429.584400px;}
.y68{bottom:433.290000px;}
.yfd{bottom:435.210000px;}
.yae{bottom:440.745000px;}
.y41{bottom:441.075000px;}
.y12b{bottom:441.151200px;}
.y13{bottom:442.484400px;}
.yd0{bottom:450.795000px;}
.yfc{bottom:451.590000px;}
.y12a{bottom:454.051200px;}
.y12{bottom:455.384400px;}
.y40{bottom:457.230000px;}
.y67{bottom:460.845000px;}
.y8e{bottom:462.450000px;}
.y129{bottom:466.966800px;}
.yfb{bottom:467.955000px;}
.y11{bottom:468.300000px;}
.y66{bottom:472.635000px;}
.y3f{bottom:473.385000px;}
.y8d{bottom:477.029400px;}
.ycf{bottom:478.305000px;}
.y128{bottom:479.866800px;}
.y10{bottom:481.200000px;}
.yfa{bottom:484.335000px;}
.yce{bottom:488.565000px;}
.y3e{bottom:489.555000px;}
.y8c{bottom:491.625000px;}
.y127{bottom:492.766800px;}
.yf{bottom:494.100000px;}
.yf9{bottom:500.700000px;}
.y126{bottom:505.681200px;}
.y3d{bottom:505.710000px;}
.y8b{bottom:506.205000px;}
.y65{bottom:513.915000px;}
.yad{bottom:516.225000px;}
.yf8{bottom:517.080000px;}
.y125{bottom:518.581200px;}
.ye{bottom:519.765000px;}
.y8a{bottom:520.785000px;}
.y3c{bottom:521.865000px;}
.yac{bottom:531.105000px;}
.ycd{bottom:531.330000px;}
.y124{bottom:531.481200px;}
.yf7{bottom:533.445000px;}
.y64{bottom:534.360000px;}
.y3b{bottom:538.020000px;}
.y89{bottom:543.885000px;}
.y123{bottom:544.381200px;}
.yab{bottom:545.984400px;}
.yf6{bottom:549.825000px;}
.ycc{bottom:551.760000px;}
.y3a{bottom:554.175000px;}
.y122{bottom:557.295600px;}
.y88{bottom:557.653200px;}
.yd{bottom:558.134400px;}
.y63{bottom:559.065000px;}
.yaa{bottom:560.850000px;}
.yf5{bottom:566.205000px;}
.y121{bottom:570.195600px;}
.y39{bottom:570.330000px;}
.yc{bottom:571.034400px;}
.y87{bottom:571.438500px;}
.ya9{bottom:575.730000px;}
.ycb{bottom:576.435000px;}
.yf4{bottom:582.570000px;}
.y120{bottom:583.095600px;}
.yb{bottom:583.934400px;}
.y86{bottom:585.223800px;}
.y38{bottom:586.500000px;}
.y11f{bottom:595.995600px;}
.ya{bottom:596.850000px;}
.yf3{bottom:598.950000px;}
.y85{bottom:598.993800px;}
.y37{bottom:602.655000px;}
.ya8{bottom:603.360000px;}
.y11e{bottom:608.910000px;}
.y9{bottom:609.750000px;}
.y84{bottom:612.779100px;}
.yf2{bottom:615.315000px;}
.y62{bottom:616.185000px;}
.ya7{bottom:617.431650px;}
.y36{bottom:618.810000px;}
.y11d{bottom:621.810000px;}
.y8{bottom:625.875000px;}
.y83{bottom:626.564400px;}
.ya6{bottom:631.501275px;}
.yf1{bottom:631.695000px;}
.y61{bottom:632.385000px;}
.yca{bottom:633.525000px;}
.y35{bottom:634.965000px;}
.y82{bottom:640.334400px;}
.y7{bottom:642.015000px;}
.ya5{bottom:645.556875px;}
.yf0{bottom:648.060000px;}
.y60{bottom:648.570000px;}
.y11c{bottom:649.590000px;}
.yc9{bottom:649.695000px;}
.y34{bottom:651.120000px;}
.y81{bottom:654.119700px;}
.y6{bottom:654.915000px;}
.ya4{bottom:659.626500px;}
.yef{bottom:664.440000px;}
.y5f{bottom:664.770000px;}
.yc8{bottom:665.880000px;}
.y33{bottom:667.275000px;}
.y5{bottom:667.815000px;}
.y80{bottom:667.905000px;}
.ya3{bottom:673.696125px;}
.y4{bottom:680.730000px;}
.yee{bottom:680.820000px;}
.y5e{bottom:680.970000px;}
.yc7{bottom:682.050000px;}
.y32{bottom:683.445000px;}
.ya2{bottom:687.765750px;}
.y7f{bottom:695.460000px;}
.y5d{bottom:697.155000px;}
.yed{bottom:697.185000px;}
.y11b{bottom:697.501200px;}
.yc6{bottom:698.220000px;}
.y31{bottom:699.600000px;}
.ya1{bottom:701.835375px;}
.y11a{bottom:710.401200px;}
.y5c{bottom:713.355000px;}
.yec{bottom:713.565000px;}
.yc5{bottom:714.390000px;}
.y30{bottom:715.755000px;}
.ya0{bottom:715.905000px;}
.y3{bottom:722.370000px;}
.y119{bottom:723.301200px;}
.y7e{bottom:726.240000px;}
.y5b{bottom:729.555000px;}
.yeb{bottom:729.930000px;}
.yc4{bottom:730.575000px;}
.y2f{bottom:731.910000px;}
.y118{bottom:736.215600px;}
.y2{bottom:741.720000px;}
.y9f{bottom:744.030000px;}
.y5a{bottom:745.755000px;}
.yea{bottom:746.310000px;}
.y7d{bottom:746.700000px;}
.yc3{bottom:746.745000px;}
.y2e{bottom:748.065000px;}
.y9e{bottom:756.105000px;}
.y117{bottom:759.751200px;}
.y1{bottom:761.070000px;}
.y59{bottom:761.940000px;}
.ye9{bottom:762.675000px;}
.y2d{bottom:764.235000px;}
.y7c{bottom:771.405000px;}
.y116{bottom:772.651200px;}
.yc2{bottom:777.795000px;}
.y58{bottom:778.140000px;}
.ye8{bottom:779.055000px;}
.y2c{bottom:780.390000px;}
.y115{bottom:785.551200px;}
.y57{bottom:794.340000px;}
.ye7{bottom:795.435000px;}
.y2b{bottom:796.545000px;}
.y9d{bottom:797.685000px;}
.y114{bottom:798.451200px;}
.y56{bottom:810.525000px;}
.y113{bottom:811.365600px;}
.ye6{bottom:811.800000px;}
.y2a{bottom:812.700000px;}
.y9c{bottom:818.415000px;}
.y112{bottom:824.265600px;}
.yc1{bottom:825.570000px;}
.y55{bottom:826.725000px;}
.ye5{bottom:828.180000px;}
.y7b{bottom:828.525000px;}
.yc0{bottom:828.570000px;}
.y29{bottom:828.855000px;}
.y9b{bottom:834.900000px;}
.y111{bottom:837.165600px;}
.ye4{bottom:844.545000px;}
.y7a{bottom:844.725000px;}
.ybf{bottom:844.755000px;}
.y110{bottom:850.065600px;}
.y28{bottom:859.905000px;}
.y54{bottom:860.925000px;}
.y10f{bottom:862.980000px;}
.y53{bottom:895.965150px;}
.h5{height:41.220703px;}
.h3{height:47.109375px;}
.hd{height:47.111775px;}
.h4{height:48.375000px;}
.h10{height:50.053711px;}
.hb{height:51.398438px;}
.h8{height:52.998047px;}
.hc{height:52.998647px;}
.h9{height:58.857422px;}
.h7{height:58.886719px;}
.h2{height:60.468750px;}
.h6{height:66.515625px;}
.he{height:70.886719px;}
.h1{height:72.562500px;}
.ha{height:93.396937px;}
.hf{height:99.399637px;}
.h0{height:1020.000000px;}
.w1{width:721.477500px;}
.w0{width:721.500000px;}
.x0{left:0.000000px;}
.xe{left:89.108100px;}
.x15{left:93.352500px;}
.xd{left:114.622500px;}
.x1a{left:129.772500px;}
.x1d{left:141.982500px;}
.x18{left:158.947500px;}
.x3{left:160.836900px;}
.x1{left:167.842500px;}
.x22{left:170.347500px;}
.x17{left:185.152500px;}
.x2{left:196.012500px;}
.x1b{left:197.467500px;}
.x24{left:198.577500px;}
.x1f{left:209.992500px;}
.x13{left:225.397500px;}
.xf{left:231.982500px;}
.x5{left:235.372500px;}
.x1c{left:236.377500px;}
.x25{left:239.752500px;}
.x19{left:247.192500px;}
.x1e{left:251.122500px;}
.x6{left:252.232500px;}
.xb{left:257.616900px;}
.xa{left:262.326900px;}
.x11{left:265.177500px;}
.x14{left:268.282500px;}
.x7{left:269.992500px;}
.x20{left:273.967500px;}
.x23{left:279.247500px;}
.x8{left:283.987500px;}
.x9{left:292.282500px;}
.x10{left:294.952500px;}
.x21{left:321.502500px;}
.xc{left:323.916900px;}
.x12{left:327.472500px;}
.x4{left:328.942500px;}
.x16{left:335.842500px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v3{vertical-align:-9.066667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.066667pt;}
.v4{vertical-align:10.666667pt;}
.v2{vertical-align:37.332000pt;}
.v5{vertical-align:42.667733pt;}
.ls25{letter-spacing:-1.077333pt;}
.ls17{letter-spacing:-1.072000pt;}
.lsa{letter-spacing:-0.805333pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.538667pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls2c{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.016000pt;}
.ls1f{letter-spacing:-0.013600pt;}
.ls0{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:-0.011733pt;}
.ls16{letter-spacing:-0.010667pt;}
.ls18{letter-spacing:-0.009067pt;}
.ls5{letter-spacing:-0.008533pt;}
.ls1{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:-0.005867pt;}
.ls2{letter-spacing:-0.005333pt;}
.ls19{letter-spacing:-0.004533pt;}
.ls4{letter-spacing:-0.004267pt;}
.lsd{letter-spacing:-0.003733pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003733pt;}
.ls6{letter-spacing:0.005333pt;}
.ls23{letter-spacing:0.012000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.037333pt;}
.ls26{letter-spacing:0.037371pt;}
.ls22{letter-spacing:0.794667pt;}
.ls28{letter-spacing:12.960000pt;}
.ls27{letter-spacing:13.013333pt;}
.ls24{letter-spacing:14.666667pt;}
.ls21{letter-spacing:14.693333pt;}
.ls1e{letter-spacing:144.826667pt;}
.ls13{letter-spacing:150.320000pt;}
.ls11{letter-spacing:167.797707pt;}
.ls10{letter-spacing:171.670827pt;}
.ls1a{letter-spacing:174.870827pt;}
.ls1b{letter-spacing:175.264373pt;}
.ls1d{letter-spacing:182.373333pt;}
.ls12{letter-spacing:194.746667pt;}
.ls20{letter-spacing:204.095200pt;}
.ls14{letter-spacing:430.879733pt;}
.ls7{letter-spacing:825.920000pt;}
.ws3e{word-spacing:-442.213067pt;}
.ws5f{word-spacing:-13.328000pt;}
.ws6c{word-spacing:-13.322667pt;}
.ws88{word-spacing:-13.317333pt;}
.ws3a{word-spacing:-11.333333pt;}
.ws3b{word-spacing:-11.328800pt;}
.ws41{word-spacing:-10.666667pt;}
.ws43{word-spacing:-10.662400pt;}
.ws72{word-spacing:-10.012000pt;}
.ws37{word-spacing:-10.000000pt;}
.ws42{word-spacing:-8.000000pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws1{word-spacing:-1.913600pt;}
.ws38{word-spacing:-1.812800pt;}
.ws33{word-spacing:-1.600000pt;}
.ws47{word-spacing:-1.440000pt;}
.ws8e{word-spacing:-1.280000pt;}
.ws9a{word-spacing:-1.254400pt;}
.ws25{word-spacing:-1.226667pt;}
.ws19{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.120000pt;}
.wsa3{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.015467pt;}
.ws64{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.680533pt;}
.ws9e{word-spacing:-0.588800pt;}
.ws61{word-spacing:-0.586667pt;}
.ws62{word-spacing:-0.480000pt;}
.ws89{word-spacing:-0.373333pt;}
.wsd{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.160000pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053333pt;}
.ws9f{word-spacing:0.106667pt;}
.ws53{word-spacing:0.213333pt;}
.ws40{word-spacing:0.303733pt;}
.ws21{word-spacing:0.320000pt;}
.ws4e{word-spacing:0.321867pt;}
.ws4a{word-spacing:0.373333pt;}
.ws8f{word-spacing:0.421333pt;}
.ws13{word-spacing:0.422400pt;}
.wsa7{word-spacing:0.426667pt;}
.wsa6{word-spacing:0.473600pt;}
.ws9b{word-spacing:0.477867pt;}
.ws32{word-spacing:0.533333pt;}
.ws99{word-spacing:0.581333pt;}
.ws70{word-spacing:0.586667pt;}
.wsa8{word-spacing:0.588800pt;}
.ws44{word-spacing:0.693333pt;}
.ws8b{word-spacing:0.746667pt;}
.ws7{word-spacing:0.797867pt;}
.ws6f{word-spacing:0.800000pt;}
.ws36{word-spacing:0.955733pt;}
.ws15{word-spacing:0.959467pt;}
.wse{word-spacing:0.960000pt;}
.ws5{word-spacing:1.062400pt;}
.wsb{word-spacing:1.066667pt;}
.ws4{word-spacing:1.070933pt;}
.ws87{word-spacing:1.115200pt;}
.wsc{word-spacing:1.117867pt;}
.ws4c{word-spacing:1.119733pt;}
.ws1f{word-spacing:1.120000pt;}
.ws4d{word-spacing:1.124267pt;}
.ws84{word-spacing:1.173333pt;}
.wsa0{word-spacing:1.224533pt;}
.ws34{word-spacing:1.280000pt;}
.ws46{word-spacing:1.328000pt;}
.ws1b{word-spacing:1.333333pt;}
.ws3{word-spacing:1.338667pt;}
.wsa1{word-spacing:1.437867pt;}
.ws17{word-spacing:1.440000pt;}
.wsa2{word-spacing:1.493333pt;}
.ws2{word-spacing:1.593600pt;}
.ws0{word-spacing:1.600000pt;}
.wsa{word-spacing:1.651200pt;}
.ws2a{word-spacing:1.653333pt;}
.wsf{word-spacing:1.706667pt;}
.ws12{word-spacing:1.757867pt;}
.ws26{word-spacing:1.760000pt;}
.ws2d{word-spacing:1.813333pt;}
.ws9c{word-spacing:1.864533pt;}
.ws8c{word-spacing:1.920000pt;}
.ws14{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.080000pt;}
.ws96{word-spacing:2.133333pt;}
.ws81{word-spacing:2.181333pt;}
.wsaa{word-spacing:2.291200pt;}
.ws6e{word-spacing:2.293333pt;}
.ws31{word-spacing:2.346667pt;}
.ws65{word-spacing:2.453333pt;}
.wsac{word-spacing:2.504533pt;}
.ws50{word-spacing:2.506667pt;}
.ws49{word-spacing:2.554667pt;}
.ws30{word-spacing:2.613333pt;}
.ws9{word-spacing:2.666667pt;}
.wsa9{word-spacing:2.717867pt;}
.wsa5{word-spacing:2.722133pt;}
.ws18{word-spacing:2.773333pt;}
.ws95{word-spacing:2.826667pt;}
.wsad{word-spacing:2.828800pt;}
.ws8a{word-spacing:2.933333pt;}
.ws9d{word-spacing:2.982400pt;}
.wsab{word-spacing:3.037867pt;}
.ws6d{word-spacing:3.141333pt;}
.ws83{word-spacing:3.360000pt;}
.ws94{word-spacing:3.573333pt;}
.ws66{word-spacing:3.626667pt;}
.ws28{word-spacing:3.893333pt;}
.ws27{word-spacing:3.946667pt;}
.ws23{word-spacing:4.053333pt;}
.ws92{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.154667pt;}
.ws51{word-spacing:4.208000pt;}
.ws45{word-spacing:4.213333pt;}
.ws1c{word-spacing:4.266667pt;}
.wsa4{word-spacing:4.424533pt;}
.ws48{word-spacing:4.426667pt;}
.ws71{word-spacing:4.577333pt;}
.ws90{word-spacing:4.640000pt;}
.ws11{word-spacing:4.957867pt;}
.ws22{word-spacing:5.013333pt;}
.ws97{word-spacing:5.226667pt;}
.ws10{word-spacing:5.440000pt;}
.ws93{word-spacing:5.653333pt;}
.ws8d{word-spacing:5.706667pt;}
.ws2f{word-spacing:5.920000pt;}
.ws4b{word-spacing:6.186667pt;}
.ws63{word-spacing:6.400000pt;}
.ws85{word-spacing:6.773333pt;}
.ws98{word-spacing:7.093333pt;}
.ws4f{word-spacing:7.146667pt;}
.ws60{word-spacing:7.253333pt;}
.ws29{word-spacing:7.626667pt;}
.ws67{word-spacing:9.280000pt;}
.ws86{word-spacing:9.973333pt;}
.ws1d{word-spacing:10.346667pt;}
.ws1e{word-spacing:12.053333pt;}
.ws91{word-spacing:12.213333pt;}
.ws52{word-spacing:17.226667pt;}
.ws7f{word-spacing:32.008533pt;}
.ws7e{word-spacing:53.341867pt;}
.ws75{word-spacing:62.070400pt;}
.ws79{word-spacing:75.661333pt;}
.ws77{word-spacing:90.757333pt;}
.ws7d{word-spacing:98.337067pt;}
.ws78{word-spacing:99.123301pt;}
.ws76{word-spacing:103.016635pt;}
.ws5b{word-spacing:109.529867pt;}
.ws7b{word-spacing:113.433067pt;}
.ws3d{word-spacing:113.473867pt;}
.ws5d{word-spacing:116.941867pt;}
.ws5a{word-spacing:120.845067pt;}
.ws7c{word-spacing:121.789968pt;}
.ws7a{word-spacing:125.683301pt;}
.ws57{word-spacing:132.151200pt;}
.ws58{word-spacing:132.160267pt;}
.ws3f{word-spacing:136.149600pt;}
.ws5c{word-spacing:143.439200pt;}
.ws59{word-spacing:143.520800pt;}
.ws56{word-spacing:154.881333pt;}
.ws55{word-spacing:166.160267pt;}
.ws6a{word-spacing:170.054400pt;}
.ws3c{word-spacing:170.117867pt;}
.ws6b{word-spacing:192.802667pt;}
.ws74{word-spacing:344.737333pt;}
.ws69{word-spacing:396.879733pt;}
.ws73{word-spacing:539.634400pt;}
.ws54{word-spacing:608.731467pt;}
.ws5e{word-spacing:767.815200pt;}
.ws80{word-spacing:789.920000pt;}
.ws39{word-spacing:1056.035467pt;}
.ws68{word-spacing:1064.834667pt;}
._13{margin-left:-226.825333pt;}
._3c{margin-left:-14.341333pt;}
._7{margin-left:-8.236800pt;}
._8{margin-left:-6.885333pt;}
._2{margin-left:-5.830400pt;}
._3{margin-left:-4.710400pt;}
._b{margin-left:-3.449600pt;}
._9{margin-left:-2.346667pt;}
._6{margin-left:-1.190400pt;}
._4{width:3.488000pt;}
._1a{width:6.776000pt;}
._19{width:8.217067pt;}
._54{width:9.710933pt;}
._5{width:10.617600pt;}
._1{width:11.686400pt;}
._0{width:14.092800pt;}
._a{width:21.434667pt;}
._c{width:26.666667pt;}
._50{width:83.204800pt;}
._4e{width:87.044533pt;}
._4f{width:102.086133pt;}
._42{width:106.456267pt;}
._46{width:114.031467pt;}
._f{width:124.752800pt;}
._49{width:129.122933pt;}
._44{width:131.474133pt;}
._32{width:137.817867pt;}
._2e{width:143.362133pt;}
._e{width:147.469333pt;}
._24{width:149.074133pt;}
._2c{width:150.941867pt;}
._33{width:153.444267pt;}
._34{width:159.101867pt;}
._27{width:160.384800pt;}
._2f{width:162.184533pt;}
._2a{width:166.087733pt;}
._25{width:170.462400pt;}
._21{width:171.695467pt;}
._22{width:174.048267pt;}
._2b{width:176.061067pt;}
._17{width:181.392267pt;}
._1d{width:183.042400pt;}
._1f{width:184.905600pt;}
._1e{width:193.065600pt;}
._11{width:204.113333pt;}
._40{width:230.510933pt;}
._3f{width:235.207467pt;}
._52{width:240.806133pt;}
._51{width:270.989067pt;}
._53{width:294.249067pt;}
._18{width:308.924000pt;}
._1b{width:318.249067pt;}
._4d{width:328.911467pt;}
._14{width:339.963733pt;}
._43{width:364.058400pt;}
._3d{width:379.421867pt;}
._31{width:387.282667pt;}
._45{width:392.460267pt;}
._3e{width:399.209867pt;}
._37{width:408.213067pt;}
._41{width:426.935733pt;}
._29{width:433.354933pt;}
._4a{width:444.593067pt;}
._47{width:449.552533pt;}
._4b{width:454.670667pt;}
._30{width:462.830667pt;}
._48{width:489.926400pt;}
._4c{width:502.461067pt;}
._2d{width:503.694133pt;}
._35{width:512.117067pt;}
._12{width:513.835200pt;}
._d{width:532.041067pt;}
._1c{width:549.702933pt;}
._10{width:552.119200pt;}
._39{width:565.075467pt;}
._26{width:595.534933pt;}
._23{width:620.690400pt;}
._28{width:635.736533pt;}
._3b{width:640.469333pt;}
._20{width:642.096800pt;}
._3a{width:663.136000pt;}
._15{width:668.770933pt;}
._38{width:882.191200pt;}
._36{width:889.716533pt;}
._16{width:993.276000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:33.973333pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:68.786800pt;}
.y10e{bottom:96.386133pt;}
.y27{bottom:96.386667pt;}
.ye3{bottom:96.386800pt;}
.y52{bottom:96.960000pt;}
.y26{bottom:107.853333pt;}
.y10d{bottom:108.066133pt;}
.ye2{bottom:109.320133pt;}
.y51{bottom:111.320000pt;}
.y79{bottom:111.360000pt;}
.ybe{bottom:111.613333pt;}
.y10c{bottom:119.760000pt;}
.ye1{bottom:122.266267pt;}
.y50{bottom:125.680000pt;}
.y78{bottom:125.746667pt;}
.ybd{bottom:126.266667pt;}
.y10b{bottom:131.440000pt;}
.ye0{bottom:135.212400pt;}
.y4f{bottom:140.040000pt;}
.y77{bottom:140.146667pt;}
.y9a{bottom:140.160000pt;}
.ybc{bottom:140.920000pt;}
.ydf{bottom:148.145733pt;}
.y4e{bottom:154.413333pt;}
.y76{bottom:154.546667pt;}
.ybb{bottom:155.586667pt;}
.y10a{bottom:155.600000pt;}
.yde{bottom:161.092933pt;}
.y13f{bottom:162.732800pt;}
.y4d{bottom:168.773333pt;}
.y75{bottom:168.946667pt;}
.y109{bottom:170.160000pt;}
.yba{bottom:170.240000pt;}
.y99{bottom:170.560000pt;}
.ydd{bottom:174.040133pt;}
.y13e{bottom:174.199467pt;}
.y4c{bottom:183.133333pt;}
.y74{bottom:183.333333pt;}
.yb9{bottom:184.893333pt;}
.y13d{bottom:185.666133pt;}
.y24{bottom:186.983467pt;}
.ydc{bottom:196.426667pt;}
.y13c{bottom:197.146667pt;}
.y4b{bottom:197.493333pt;}
.y108{bottom:197.933333pt;}
.y23{bottom:198.450133pt;}
.yb8{bottom:199.546667pt;}
.y13b{bottom:208.613333pt;}
.ydb{bottom:208.653867pt;}
.y22{bottom:209.930667pt;}
.y4a{bottom:211.853333pt;}
.yb7{bottom:214.200000pt;}
.y98{bottom:214.626667pt;}
.y13a{bottom:220.080000pt;}
.yda{bottom:220.880267pt;}
.y21{bottom:221.397333pt;}
.y49{bottom:226.226667pt;}
.y97{bottom:229.026667pt;}
.y139{bottom:231.546667pt;}
.yd9{bottom:233.106667pt;}
.y73{bottom:235.533333pt;}
.y48{bottom:240.586667pt;}
.y107{bottom:241.306667pt;}
.y138{bottom:243.027200pt;}
.y96{bottom:243.426667pt;}
.y20{bottom:244.211200pt;}
.yb6{bottom:244.853333pt;}
.y72{bottom:248.493333pt;}
.y137{bottom:254.493867pt;}
.y1f{bottom:255.677867pt;}
.y106{bottom:255.866667pt;}
.yd8{bottom:256.666667pt;}
.y95{bottom:257.826667pt;}
.y71{bottom:261.453333pt;}
.y136{bottom:265.960533pt;}
.y1e{bottom:267.144533pt;}
.yd7{bottom:268.893333pt;}
.y105{bottom:270.413333pt;}
.y47{bottom:270.946667pt;}
.y94{bottom:272.226667pt;}
.y70{bottom:274.413333pt;}
.y135{bottom:277.427200pt;}
.y1d{bottom:278.611200pt;}
.yd6{bottom:281.120000pt;}
.y104{bottom:284.973333pt;}
.y93{bottom:286.626667pt;}
.y6f{bottom:287.373333pt;}
.y134{bottom:288.906667pt;}
.yb5{bottom:289.186667pt;}
.y1c{bottom:290.091733pt;}
.y46{bottom:291.440000pt;}
.yd5{bottom:293.346667pt;}
.y103{bottom:299.533333pt;}
.y133{bottom:300.373333pt;}
.y92{bottom:301.026667pt;}
.y1b{bottom:301.558400pt;}
.yb4{bottom:303.840000pt;}
.y6e{bottom:311.680000pt;}
.y132{bottom:311.840000pt;}
.y1a{bottom:313.025067pt;}
.y102{bottom:314.080000pt;}
.y91{bottom:315.426667pt;}
.yd4{bottom:316.906667pt;}
.yb3{bottom:318.493333pt;}
.y131{bottom:323.320533pt;}
.y6d{bottom:323.919467pt;}
.y19{bottom:324.505600pt;}
.y101{bottom:328.640000pt;}
.y90{bottom:329.826667pt;}
.yb2{bottom:333.146667pt;}
.y45{bottom:334.613333pt;}
.y130{bottom:334.787200pt;}
.y18{bottom:335.972267pt;}
.y6c{bottom:336.173067pt;}
.yd3{bottom:340.466667pt;}
.y100{bottom:343.186667pt;}
.y12f{bottom:346.253867pt;}
.y17{bottom:347.438933pt;}
.yb1{bottom:347.800000pt;}
.y6b{bottom:348.413067pt;}
.y44{bottom:348.986667pt;}
.yd2{bottom:352.693333pt;}
.y12e{bottom:357.720533pt;}
.yff{bottom:357.746667pt;}
.y16{bottom:358.905600pt;}
.y8f{bottom:360.226667pt;}
.y6a{bottom:360.666667pt;}
.yb0{bottom:362.453333pt;}
.y43{bottom:363.346667pt;}
.y12d{bottom:369.201067pt;}
.y15{bottom:370.386133pt;}
.yfe{bottom:372.293333pt;}
.y69{bottom:372.906667pt;}
.yd1{bottom:376.266667pt;}
.yaf{bottom:377.106667pt;}
.y42{bottom:377.706667pt;}
.y12c{bottom:380.667733pt;}
.y14{bottom:381.852800pt;}
.y68{bottom:385.146667pt;}
.yfd{bottom:386.853333pt;}
.yae{bottom:391.773333pt;}
.y41{bottom:392.066667pt;}
.y12b{bottom:392.134400pt;}
.y13{bottom:393.319467pt;}
.yd0{bottom:400.706667pt;}
.yfc{bottom:401.413333pt;}
.y12a{bottom:403.601067pt;}
.y12{bottom:404.786133pt;}
.y40{bottom:406.426667pt;}
.y67{bottom:409.640000pt;}
.y8e{bottom:411.066667pt;}
.y129{bottom:415.081600pt;}
.yfb{bottom:415.960000pt;}
.y11{bottom:416.266667pt;}
.y66{bottom:420.120000pt;}
.y3f{bottom:420.786667pt;}
.y8d{bottom:424.026133pt;}
.ycf{bottom:425.160000pt;}
.y128{bottom:426.548267pt;}
.y10{bottom:427.733333pt;}
.yfa{bottom:430.520000pt;}
.yce{bottom:434.280000pt;}
.y3e{bottom:435.160000pt;}
.y8c{bottom:437.000000pt;}
.y127{bottom:438.014933pt;}
.yf{bottom:439.200000pt;}
.yf9{bottom:445.066667pt;}
.y126{bottom:449.494400pt;}
.y3d{bottom:449.520000pt;}
.y8b{bottom:449.960000pt;}
.y65{bottom:456.813333pt;}
.yad{bottom:458.866667pt;}
.yf8{bottom:459.626667pt;}
.y125{bottom:460.961067pt;}
.ye{bottom:462.013333pt;}
.y8a{bottom:462.920000pt;}
.y3c{bottom:463.880000pt;}
.yac{bottom:472.093333pt;}
.ycd{bottom:472.293333pt;}
.y124{bottom:472.427733pt;}
.yf7{bottom:474.173333pt;}
.y64{bottom:474.986667pt;}
.y3b{bottom:478.240000pt;}
.y89{bottom:483.453333pt;}
.y123{bottom:483.894400pt;}
.yab{bottom:485.319467pt;}
.yf6{bottom:488.733333pt;}
.ycc{bottom:490.453333pt;}
.y3a{bottom:492.600000pt;}
.y122{bottom:495.373867pt;}
.y88{bottom:495.691733pt;}
.yd{bottom:496.119467pt;}
.y63{bottom:496.946667pt;}
.yaa{bottom:498.533333pt;}
.yf5{bottom:503.293333pt;}
.y121{bottom:506.840533pt;}
.y39{bottom:506.960000pt;}
.yc{bottom:507.586133pt;}
.y87{bottom:507.945333pt;}
.ya9{bottom:511.760000pt;}
.ycb{bottom:512.386667pt;}
.yf4{bottom:517.840000pt;}
.y120{bottom:518.307200pt;}
.yb{bottom:519.052800pt;}
.y86{bottom:520.198933pt;}
.y38{bottom:521.333333pt;}
.y11f{bottom:529.773867pt;}
.ya{bottom:530.533333pt;}
.yf3{bottom:532.400000pt;}
.y85{bottom:532.438933pt;}
.y37{bottom:535.693333pt;}
.ya8{bottom:536.320000pt;}
.y11e{bottom:541.253333pt;}
.y9{bottom:542.000000pt;}
.y84{bottom:544.692533pt;}
.yf2{bottom:546.946667pt;}
.y62{bottom:547.720000pt;}
.ya7{bottom:548.828133pt;}
.y36{bottom:550.053333pt;}
.y11d{bottom:552.720000pt;}
.y8{bottom:556.333333pt;}
.y83{bottom:556.946133pt;}
.ya6{bottom:561.334467pt;}
.yf1{bottom:561.506667pt;}
.y61{bottom:562.120000pt;}
.yca{bottom:563.133333pt;}
.y35{bottom:564.413333pt;}
.y82{bottom:569.186133pt;}
.y7{bottom:570.680000pt;}
.ya5{bottom:573.828333pt;}
.yf0{bottom:576.053333pt;}
.y60{bottom:576.506667pt;}
.y11c{bottom:577.413333pt;}
.yc9{bottom:577.506667pt;}
.y34{bottom:578.773333pt;}
.y81{bottom:581.439733pt;}
.y6{bottom:582.146667pt;}
.ya4{bottom:586.334667pt;}
.yef{bottom:590.613333pt;}
.y5f{bottom:590.906667pt;}
.yc8{bottom:591.893333pt;}
.y33{bottom:593.133333pt;}
.y5{bottom:593.613333pt;}
.y80{bottom:593.693333pt;}
.ya3{bottom:598.841000pt;}
.y4{bottom:605.093333pt;}
.yee{bottom:605.173333pt;}
.y5e{bottom:605.306667pt;}
.yc7{bottom:606.266667pt;}
.y32{bottom:607.506667pt;}
.ya2{bottom:611.347333pt;}
.y7f{bottom:618.186667pt;}
.y5d{bottom:619.693333pt;}
.yed{bottom:619.720000pt;}
.y11b{bottom:620.001067pt;}
.yc6{bottom:620.640000pt;}
.y31{bottom:621.866667pt;}
.ya1{bottom:623.853667pt;}
.y11a{bottom:631.467733pt;}
.y5c{bottom:634.093333pt;}
.yec{bottom:634.280000pt;}
.yc5{bottom:635.013333pt;}
.y30{bottom:636.226667pt;}
.ya0{bottom:636.360000pt;}
.y3{bottom:642.106667pt;}
.y119{bottom:642.934400pt;}
.y7e{bottom:645.546667pt;}
.y5b{bottom:648.493333pt;}
.yeb{bottom:648.826667pt;}
.yc4{bottom:649.400000pt;}
.y2f{bottom:650.586667pt;}
.y118{bottom:654.413867pt;}
.y2{bottom:659.306667pt;}
.y9f{bottom:661.360000pt;}
.y5a{bottom:662.893333pt;}
.yea{bottom:663.386667pt;}
.y7d{bottom:663.733333pt;}
.yc3{bottom:663.773333pt;}
.y2e{bottom:664.946667pt;}
.y9e{bottom:672.093333pt;}
.y117{bottom:675.334400pt;}
.y1{bottom:676.506667pt;}
.y59{bottom:677.280000pt;}
.ye9{bottom:677.933333pt;}
.y2d{bottom:679.320000pt;}
.y7c{bottom:685.693333pt;}
.y116{bottom:686.801067pt;}
.yc2{bottom:691.373333pt;}
.y58{bottom:691.680000pt;}
.ye8{bottom:692.493333pt;}
.y2c{bottom:693.680000pt;}
.y115{bottom:698.267733pt;}
.y57{bottom:706.080000pt;}
.ye7{bottom:707.053333pt;}
.y2b{bottom:708.040000pt;}
.y9d{bottom:709.053333pt;}
.y114{bottom:709.734400pt;}
.y56{bottom:720.466667pt;}
.y113{bottom:721.213867pt;}
.ye6{bottom:721.600000pt;}
.y2a{bottom:722.400000pt;}
.y9c{bottom:727.480000pt;}
.y112{bottom:732.680533pt;}
.yc1{bottom:733.840000pt;}
.y55{bottom:734.866667pt;}
.ye5{bottom:736.160000pt;}
.y7b{bottom:736.466667pt;}
.yc0{bottom:736.506667pt;}
.y29{bottom:736.760000pt;}
.y9b{bottom:742.133333pt;}
.y111{bottom:744.147200pt;}
.ye4{bottom:750.706667pt;}
.y7a{bottom:750.866667pt;}
.ybf{bottom:750.893333pt;}
.y110{bottom:755.613867pt;}
.y28{bottom:764.360000pt;}
.y54{bottom:765.266667pt;}
.y10f{bottom:767.093333pt;}
.y53{bottom:796.413467pt;}
.h5{height:36.640625pt;}
.h3{height:41.875000pt;}
.hd{height:41.877133pt;}
.h4{height:43.000000pt;}
.h10{height:44.492188pt;}
.hb{height:45.687500pt;}
.h8{height:47.109375pt;}
.hc{height:47.109908pt;}
.h9{height:52.317708pt;}
.h7{height:52.343750pt;}
.h2{height:53.750000pt;}
.h6{height:59.125000pt;}
.he{height:63.010417pt;}
.h1{height:64.500000pt;}
.ha{height:83.019500pt;}
.hf{height:88.355233pt;}
.h0{height:906.666667pt;}
.w1{width:641.313333pt;}
.w0{width:641.333333pt;}
.x0{left:0.000000pt;}
.xe{left:79.207200pt;}
.x15{left:82.980000pt;}
.xd{left:101.886667pt;}
.x1a{left:115.353333pt;}
.x1d{left:126.206667pt;}
.x18{left:141.286667pt;}
.x3{left:142.966133pt;}
.x1{left:149.193333pt;}
.x22{left:151.420000pt;}
.x17{left:164.580000pt;}
.x2{left:174.233333pt;}
.x1b{left:175.526667pt;}
.x24{left:176.513333pt;}
.x1f{left:186.660000pt;}
.x13{left:200.353333pt;}
.xf{left:206.206667pt;}
.x5{left:209.220000pt;}
.x1c{left:210.113333pt;}
.x25{left:213.113333pt;}
.x19{left:219.726667pt;}
.x1e{left:223.220000pt;}
.x6{left:224.206667pt;}
.xb{left:228.992800pt;}
.xa{left:233.179467pt;}
.x11{left:235.713333pt;}
.x14{left:238.473333pt;}
.x7{left:239.993333pt;}
.x20{left:243.526667pt;}
.x23{left:248.220000pt;}
.x8{left:252.433333pt;}
.x9{left:259.806667pt;}
.x10{left:262.180000pt;}
.x21{left:285.780000pt;}
.xc{left:287.926133pt;}
.x12{left:291.086667pt;}
.x4{left:292.393333pt;}
.x16{left:298.526667pt;}
}

