
    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_ae97932650534d55271e5c76.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;font-style:normal;font-weight:normal;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_8f7621370ef397b7ace85fe7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;font-style:normal;font-weight:normal;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_375b0a0aca43ac58bea4a227.woff')format("woff");}.ff3{font-family:ff3;line-height:0.918000;font-style:normal;font-weight:normal;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_81de135b6d63b33eff4a550f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-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);}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:16.371000px;}
.ls3{letter-spacing:-3.960000px;}
.ls4{letter-spacing:-2.310000px;}
.ls1b{letter-spacing:-2.280000px;}
.ls1a{letter-spacing:-2.160000px;}
.ls1{letter-spacing:-1.650000px;}
.ls7{letter-spacing:-1.320000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls5{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.587664px;}
.ls18{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.486000px;}
.ls6{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.391776px;}
.ls1d{letter-spacing:-0.352598px;}
.lsb{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.117533px;}
.ls19{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.006600px;}
.ls11{letter-spacing:0.195888px;}
.ls12{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.587664px;}
.lsf{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.122000px;}
.ls14{letter-spacing:5.742000px;}
.ls17{letter-spacing:6.696000px;}
.ls13{letter-spacing:8.184000px;}
.ls2{letter-spacing:9.240000px;}
.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;}
}
.wsd{word-spacing:-13.068000px;}
.ws3d{word-spacing:-13.002000px;}
.ws37{word-spacing:-12.408000px;}
.ws7{word-spacing:-12.012000px;}
.ws1{word-spacing:-11.880000px;}
.ws28{word-spacing:-11.814000px;}
.ws27{word-spacing:-11.748000px;}
.ws2c{word-spacing:-11.682000px;}
.ws67{word-spacing:-11.352000px;}
.ws7f{word-spacing:-11.280000px;}
.ws1b{word-spacing:-11.022000px;}
.ws22{word-spacing:-10.920000px;}
.ws4e{word-spacing:-10.860000px;}
.wsc{word-spacing:-10.758000px;}
.ws2{word-spacing:-10.692000px;}
.ws42{word-spacing:-10.530000px;}
.ws4f{word-spacing:-10.320000px;}
.ws1c{word-spacing:-9.828000px;}
.ws43{word-spacing:-9.666000px;}
.ws0{word-spacing:-9.504000px;}
.ws4d{word-spacing:-9.288000px;}
.wsa{word-spacing:-9.240000px;}
.ws69{word-spacing:-8.802000px;}
.ws3c{word-spacing:-8.344829px;}
.ws45{word-spacing:-8.184000px;}
.ws6{word-spacing:-8.052000px;}
.ws3e{word-spacing:-7.953053px;}
.wse{word-spacing:-7.757165px;}
.ws41{word-spacing:-7.639632px;}
.ws68{word-spacing:-7.404566px;}
.ws30{word-spacing:-7.365389px;}
.ws38{word-spacing:-7.169501px;}
.ws4b{word-spacing:-6.696000px;}
.ws47{word-spacing:-5.742000px;}
.ws85{word-spacing:-4.260000px;}
.ws83{word-spacing:-3.540000px;}
.ws82{word-spacing:-2.760000px;}
.ws75{word-spacing:-2.700000px;}
.ws65{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.442000px;}
.ws44{word-spacing:-2.310000px;}
.ws59{word-spacing:-2.040000px;}
.ws73{word-spacing:-1.848000px;}
.ws15{word-spacing:-1.518000px;}
.ws14{word-spacing:-1.386000px;}
.ws1f{word-spacing:-1.320000px;}
.ws63{word-spacing:-1.254000px;}
.ws6c{word-spacing:-1.188000px;}
.ws36{word-spacing:-1.122000px;}
.ws81{word-spacing:-1.020000px;}
.ws3f{word-spacing:-0.990000px;}
.ws52{word-spacing:-0.720000px;}
.ws74{word-spacing:-0.600000px;}
.ws7a{word-spacing:-0.540000px;}
.ws1d{word-spacing:-0.462000px;}
.ws50{word-spacing:-0.360000px;}
.ws40{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.198000px;}
.ws31{word-spacing:-0.132000px;}
.ws3{word-spacing:0.000000px;}
.ws55{word-spacing:0.060000px;}
.ws2e{word-spacing:0.066000px;}
.ws49{word-spacing:0.162000px;}
.ws78{word-spacing:0.180000px;}
.ws2a{word-spacing:0.198000px;}
.ws23{word-spacing:0.240000px;}
.ws80{word-spacing:0.300000px;}
.ws70{word-spacing:0.324000px;}
.ws57{word-spacing:0.420000px;}
.ws1e{word-spacing:0.462000px;}
.ws76{word-spacing:0.480000px;}
.ws6d{word-spacing:0.486000px;}
.ws84{word-spacing:0.600000px;}
.ws6a{word-spacing:0.726000px;}
.ws61{word-spacing:0.792000px;}
.ws51{word-spacing:0.840000px;}
.ws48{word-spacing:0.864000px;}
.ws29{word-spacing:0.924000px;}
.ws19{word-spacing:0.990000px;}
.ws2d{word-spacing:1.056000px;}
.ws2f{word-spacing:1.080000px;}
.ws6f{word-spacing:1.122000px;}
.ws54{word-spacing:1.380000px;}
.ws64{word-spacing:1.386000px;}
.ws7d{word-spacing:1.500000px;}
.ws20{word-spacing:1.584000px;}
.wsb{word-spacing:1.782000px;}
.ws58{word-spacing:1.800000px;}
.ws56{word-spacing:2.160000px;}
.ws6b{word-spacing:2.244000px;}
.ws5a{word-spacing:2.280000px;}
.ws53{word-spacing:2.400000px;}
.wsf{word-spacing:2.442000px;}
.ws72{word-spacing:2.508000px;}
.ws7b{word-spacing:2.820000px;}
.ws8{word-spacing:3.036000px;}
.ws77{word-spacing:3.120000px;}
.ws39{word-spacing:3.168000px;}
.ws3a{word-spacing:3.240000px;}
.ws11{word-spacing:3.366000px;}
.ws7e{word-spacing:3.660000px;}
.ws62{word-spacing:3.696000px;}
.ws10{word-spacing:3.762000px;}
.ws18{word-spacing:3.960000px;}
.ws5c{word-spacing:4.200000px;}
.ws25{word-spacing:4.224000px;}
.ws46{word-spacing:4.356000px;}
.ws6e{word-spacing:4.752000px;}
.ws13{word-spacing:4.950000px;}
.ws35{word-spacing:5.082000px;}
.ws24{word-spacing:5.214000px;}
.ws60{word-spacing:5.346000px;}
.ws5e{word-spacing:5.478000px;}
.ws5f{word-spacing:5.874000px;}
.ws4a{word-spacing:6.156000px;}
.ws5b{word-spacing:6.540000px;}
.ws17{word-spacing:6.666000px;}
.ws32{word-spacing:6.864000px;}
.ws12{word-spacing:6.996000px;}
.ws7c{word-spacing:7.560000px;}
.ws9{word-spacing:8.448000px;}
.ws79{word-spacing:11.400000px;}
.ws1a{word-spacing:13.266000px;}
.ws86{word-spacing:18.060000px;}
.ws5{word-spacing:514.660800px;}
.ws4c{word-spacing:620.978400px;}
.ws16{word-spacing:621.440400px;}
.ws71{word-spacing:622.364400px;}
.ws34{word-spacing:622.826400px;}
.ws66{word-spacing:623.420400px;}
.ws3b{word-spacing:623.882400px;}
.ws5d{word-spacing:625.070400px;}
.ws2b{word-spacing:625.862400px;}
.ws21{word-spacing:629.492400px;}
.ws4{word-spacing:631.274400px;}
._11{margin-left:-12.408000px;}
._e{margin-left:-9.786000px;}
._10{margin-left:-7.161000px;}
._d{margin-left:-5.685600px;}
._8{margin-left:-4.500000px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.454400px;}
._2{width:1.365000px;}
._5{width:2.649000px;}
._6{width:3.792600px;}
._a{width:4.949400px;}
._4{width:6.067200px;}
._3{width:7.079400px;}
._7{width:8.796000px;}
._9{width:10.740000px;}
._f{width:11.909400px;}
._13{width:13.090800px;}
._b{width:14.094000px;}
._c{width:15.639000px;}
._16{width:17.268000px;}
._17{width:18.370800px;}
._12{width:19.525200px;}
._15{width:32.610000px;}
._14{width:33.754800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs5{font-size:39.177600px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y4{bottom:57.401550px;}
.y1{bottom:68.775600px;}
.y3{bottom:71.955600px;}
.y190{bottom:116.929050px;}
.y6f{bottom:116.929200px;}
.yd9{bottom:116.929350px;}
.y135{bottom:118.051500px;}
.y155{bottom:118.829400px;}
.y1d9{bottom:119.637300px;}
.ybf{bottom:121.023600px;}
.y4a{bottom:123.450300px;}
.y117{bottom:126.202650px;}
.y18f{bottom:133.129050px;}
.y6e{bottom:133.129200px;}
.y134{bottom:136.051500px;}
.y99{bottom:137.223600px;}
.yd8{bottom:137.223750px;}
.y1d8{bottom:137.637300px;}
.y154{bottom:138.629400px;}
.y49{bottom:143.250300px;}
.y116{bottom:146.002650px;}
.y6d{bottom:149.329200px;}
.y18e{bottom:153.423450px;}
.y7a{bottom:153.423600px;}
.yd7{bottom:153.423900px;}
.y133{bottom:154.051500px;}
.y1d7{bottom:155.637300px;}
.y21{bottom:157.708650px;}
.y153{bottom:158.429400px;}
.ybe{bottom:162.837300px;}
.y48{bottom:163.050300px;}
.y18d{bottom:165.529050px;}
.yd0{bottom:165.529200px;}
.y98{bottom:165.529350px;}
.y115{bottom:165.802650px;}
.y6c{bottom:169.623600px;}
.yd6{bottom:169.624050px;}
.y132{bottom:172.051500px;}
.y1d6{bottom:173.637300px;}
.y152{bottom:178.229400px;}
.yc5{bottom:181.729200px;}
.y20{bottom:182.308650px;}
.ybd{bottom:182.637300px;}
.y47{bottom:182.850300px;}
.y114{bottom:185.602650px;}
.y18c{bottom:185.823450px;}
.yed{bottom:185.823600px;}
.y97{bottom:185.823750px;}
.y131{bottom:190.051500px;}
.y1d5{bottom:191.637300px;}
.y16b{bottom:195.139650px;}
.y79{bottom:196.939650px;}
.y157{bottom:197.733450px;}
.ycf{bottom:197.929200px;}
.y151{bottom:198.029400px;}
.y1f{bottom:200.308650px;}
.yc4{bottom:202.023600px;}
.ybc{bottom:202.437300px;}
.y46{bottom:202.650300px;}
.y113{bottom:205.402650px;}
.y130{bottom:208.051500px;}
.y1d4{bottom:209.637300px;}
.y16a{bottom:213.139650px;}
.yce{bottom:214.129200px;}
.y78{bottom:216.739650px;}
.y156{bottom:217.533450px;}
.y150{bottom:217.829400px;}
.y1e{bottom:218.308650px;}
.ybb{bottom:222.237300px;}
.y45{bottom:222.450300px;}
.y112{bottom:225.202650px;}
.y12f{bottom:226.051500px;}
.y1d3{bottom:227.637300px;}
.y18b{bottom:229.437300px;}
.y96{bottom:230.133300px;}
.ycd{bottom:230.329200px;}
.y169{bottom:231.139650px;}
.yec{bottom:234.423600px;}
.y1a4{bottom:235.829400px;}
.y1d{bottom:236.308650px;}
.y6b{bottom:236.539650px;}
.yd5{bottom:237.333300px;}
.y14f{bottom:237.629400px;}
.yba{bottom:242.037300px;}
.y44{bottom:242.250300px;}
.y12e{bottom:244.051500px;}
.y111{bottom:245.002650px;}
.y1d2{bottom:245.637300px;}
.ycc{bottom:246.529200px;}
.y18a{bottom:247.437300px;}
.y95{bottom:248.133300px;}
.y168{bottom:249.139650px;}
.y10a{bottom:250.623600px;}
.y1a3{bottom:253.829400px;}
.y1c{bottom:254.308650px;}
.y1b9{bottom:254.539650px;}
.y6a{bottom:256.339650px;}
.yd4{bottom:257.133300px;}
.y14e{bottom:257.429400px;}
.yb9{bottom:261.837300px;}
.y43{bottom:262.050300px;}
.y12d{bottom:262.051500px;}
.y109{bottom:262.729200px;}
.y1d1{bottom:263.637300px;}
.y110{bottom:264.802650px;}
.y189{bottom:265.437300px;}
.y94{bottom:266.133300px;}
.ycb{bottom:266.823600px;}
.y167{bottom:267.139650px;}
.y1a2{bottom:271.829400px;}
.y1b{bottom:272.308650px;}
.y1b8{bottom:272.539650px;}
.y69{bottom:276.139650px;}
.yd3{bottom:276.933300px;}
.y14d{bottom:277.229400px;}
.yca{bottom:278.929200px;}
.y12c{bottom:280.051500px;}
.yb8{bottom:281.637300px;}
.y42{bottom:281.850300px;}
.y108{bottom:283.023600px;}
.y188{bottom:283.437300px;}
.y93{bottom:284.133300px;}
.y10f{bottom:284.602650px;}
.y166{bottom:285.139650px;}
.y1a1{bottom:289.829400px;}
.y1a{bottom:290.308650px;}
.y1b7{bottom:290.539650px;}
.yc9{bottom:295.129200px;}
.y68{bottom:295.939650px;}
.yd2{bottom:296.733300px;}
.y14c{bottom:297.029400px;}
.y12b{bottom:298.051500px;}
.y107{bottom:299.223600px;}
.y1d0{bottom:299.637300px;}
.yb7{bottom:301.437300px;}
.y41{bottom:301.650300px;}
.y92{bottom:302.133300px;}
.y165{bottom:303.139650px;}
.y1a0{bottom:307.829400px;}
.y19{bottom:308.308650px;}
.y1b6{bottom:308.539650px;}
.y106{bottom:311.329200px;}
.y10b{bottom:315.423600px;}
.y67{bottom:315.739650px;}
.y12a{bottom:316.051500px;}
.yeb{bottom:316.533300px;}
.yd1{bottom:316.533450px;}
.y14b{bottom:316.829400px;}
.y1cf{bottom:317.637300px;}
.y10e{bottom:319.285650px;}
.y187{bottom:319.437300px;}
.y91{bottom:320.133300px;}
.y164{bottom:321.139650px;}
.yb6{bottom:321.237300px;}
.y40{bottom:321.450300px;}
.y19f{bottom:325.829400px;}
.y1b5{bottom:326.539650px;}
.y105{bottom:327.529200px;}
.y18{bottom:330.553650px;}
.y129{bottom:334.051500px;}
.y66{bottom:335.539650px;}
.y1ce{bottom:335.637300px;}
.yea{bottom:336.333300px;}
.yc8{bottom:336.333450px;}
.y14a{bottom:336.629400px;}
.y186{bottom:337.437300px;}
.y90{bottom:338.133300px;}
.y163{bottom:339.139650px;}
.yb5{bottom:341.037300px;}
.y3f{bottom:341.250300px;}
.y104{bottom:343.729200px;}
.y19e{bottom:343.829400px;}
.y1b4{bottom:344.539650px;}
.y128{bottom:352.051500px;}
.y1cd{bottom:353.637300px;}
.y65{bottom:355.339650px;}
.y185{bottom:355.437300px;}
.ye9{bottom:356.133300px;}
.yc7{bottom:356.133450px;}
.y149{bottom:356.429400px;}
.y17{bottom:357.058650px;}
.y162{bottom:357.139650px;}
.y103{bottom:359.929200px;}
.yb4{bottom:360.837300px;}
.y3e{bottom:361.050300px;}
.y19d{bottom:361.829400px;}
.y1b3{bottom:362.539650px;}
.y127{bottom:370.051500px;}
.y1cc{bottom:371.637300px;}
.y184{bottom:373.437300px;}
.y16{bottom:375.058650px;}
.y64{bottom:375.139650px;}
.ye8{bottom:375.933300px;}
.y8f{bottom:375.933450px;}
.y148{bottom:376.229400px;}
.y19c{bottom:379.829400px;}
.y102{bottom:380.223600px;}
.y1b2{bottom:380.539650px;}
.yb3{bottom:380.637300px;}
.y3d{bottom:380.850300px;}
.y10d{bottom:384.398850px;}
.y126{bottom:388.051500px;}
.y1cb{bottom:389.637300px;}
.y183{bottom:391.437300px;}
.y101{bottom:392.329200px;}
.y15{bottom:393.058650px;}
.y63{bottom:394.939650px;}
.ye7{bottom:395.733300px;}
.y8e{bottom:395.733450px;}
.y147{bottom:396.029400px;}
.y19b{bottom:397.829400px;}
.y1b1{bottom:398.539650px;}
.y3c{bottom:400.650300px;}
.y125{bottom:406.051500px;}
.y1ca{bottom:407.637300px;}
.y100{bottom:408.529200px;}
.y182{bottom:409.437300px;}
.y14{bottom:411.058650px;}
.y62{bottom:414.739650px;}
.ye6{bottom:415.533300px;}
.y8d{bottom:415.533450px;}
.y146{bottom:415.829400px;}
.y1b0{bottom:416.539650px;}
.yb2{bottom:420.237300px;}
.y3b{bottom:420.450300px;}
.y124{bottom:424.051500px;}
.yff{bottom:424.729200px;}
.y1c9{bottom:425.637300px;}
.y181{bottom:427.437300px;}
.y13{bottom:429.058650px;}
.y19a{bottom:433.829400px;}
.y61{bottom:434.539650px;}
.y161{bottom:434.541300px;}
.ye5{bottom:435.333300px;}
.y8c{bottom:435.333450px;}
.y145{bottom:435.629400px;}
.yb1{bottom:438.237300px;}
.y3a{bottom:440.250300px;}
.yfe{bottom:440.929200px;}
.y123{bottom:442.051500px;}
.y1c8{bottom:443.637300px;}
.y180{bottom:445.437300px;}
.y12{bottom:447.058650px;}
.y1af{bottom:449.424450px;}
.y60{bottom:454.339650px;}
.y160{bottom:454.341300px;}
.ye4{bottom:455.133300px;}
.y8b{bottom:455.133450px;}
.y144{bottom:455.429400px;}
.yb0{bottom:456.237300px;}
.yfd{bottom:457.129200px;}
.y39{bottom:460.050300px;}
.y122{bottom:460.051500px;}
.y1c7{bottom:461.637300px;}
.y17f{bottom:463.437300px;}
.y11{bottom:465.058650px;}
.y199{bottom:471.629400px;}
.yfc{bottom:473.329200px;}
.y5f{bottom:474.139650px;}
.y15f{bottom:474.141300px;}
.yaf{bottom:474.237300px;}
.ye3{bottom:474.933300px;}
.y8a{bottom:474.933450px;}
.y143{bottom:475.229400px;}
.y121{bottom:478.051500px;}
.y1c6{bottom:479.637300px;}
.y38{bottom:479.850300px;}
.y17e{bottom:481.437300px;}
.y10{bottom:483.058650px;}
.yfb{bottom:489.529200px;}
.y198{bottom:491.429400px;}
.yae{bottom:492.237300px;}
.y5e{bottom:493.939650px;}
.y15e{bottom:493.941300px;}
.ye2{bottom:494.733300px;}
.y89{bottom:494.733450px;}
.y142{bottom:495.029400px;}
.y120{bottom:496.051500px;}
.y1c5{bottom:497.637300px;}
.y17d{bottom:499.437300px;}
.y37{bottom:499.650300px;}
.yf{bottom:501.058650px;}
.yfa{bottom:505.729200px;}
.y197{bottom:511.229400px;}
.y5d{bottom:513.739650px;}
.y15d{bottom:513.741300px;}
.y11f{bottom:514.051500px;}
.ye1{bottom:514.533300px;}
.y88{bottom:514.533450px;}
.y141{bottom:514.829400px;}
.y1c4{bottom:515.637300px;}
.y36{bottom:519.450300px;}
.yf9{bottom:521.929200px;}
.ye{bottom:523.303650px;}
.yad{bottom:530.037300px;}
.y11e{bottom:532.051500px;}
.y5c{bottom:533.539650px;}
.y15c{bottom:533.541300px;}
.y1c3{bottom:533.637300px;}
.ye0{bottom:534.333300px;}
.y87{bottom:534.333450px;}
.y140{bottom:534.629400px;}
.y17c{bottom:537.237300px;}
.y35{bottom:539.250300px;}
.yf8{bottom:542.223600px;}
.y196{bottom:548.037300px;}
.yac{bottom:549.837300px;}
.y11d{bottom:550.051500px;}
.y1c2{bottom:551.637300px;}
.y5b{bottom:553.339650px;}
.y15b{bottom:553.341300px;}
.ydf{bottom:554.133300px;}
.y86{bottom:554.133450px;}
.y13f{bottom:554.429400px;}
.y17b{bottom:557.037300px;}
.y34{bottom:559.050300px;}
.y195{bottom:566.037300px;}
.y11c{bottom:568.051500px;}
.yd{bottom:569.611500px;}
.yab{bottom:569.637300px;}
.y5a{bottom:573.139650px;}
.yc3{bottom:573.141300px;}
.yde{bottom:573.933300px;}
.y85{bottom:573.933450px;}
.y13e{bottom:574.229400px;}
.y17a{bottom:576.837300px;}
.y33{bottom:578.850300px;}
.y194{bottom:584.037300px;}
.yc{bottom:584.610000px;}
.y11b{bottom:586.051500px;}
.y1c1{bottom:587.637300px;}
.yaa{bottom:589.437300px;}
.y1ae{bottom:591.933450px;}
.y59{bottom:592.939650px;}
.yc2{bottom:592.941300px;}
.ydd{bottom:593.733300px;}
.y84{bottom:593.733450px;}
.y13d{bottom:594.029400px;}
.y179{bottom:596.637300px;}
.y32{bottom:598.650300px;}
.y193{bottom:602.037300px;}
.yb{bottom:603.861000px;}
.y11a{bottom:604.051500px;}
.y1c0{bottom:605.637300px;}
.ya9{bottom:609.237300px;}
.y1ad{bottom:609.933450px;}
.y58{bottom:612.739650px;}
.yc1{bottom:612.741300px;}
.ydc{bottom:613.533300px;}
.y83{bottom:613.533450px;}
.y13c{bottom:613.829400px;}
.y178{bottom:616.437300px;}
.y31{bottom:618.450300px;}
.y192{bottom:620.037300px;}
.y119{bottom:622.051500px;}
.y1bf{bottom:623.637300px;}
.y1ac{bottom:627.933450px;}
.ya8{bottom:629.037300px;}
.y57{bottom:632.539650px;}
.y77{bottom:632.541300px;}
.ydb{bottom:633.333300px;}
.y82{bottom:633.333450px;}
.y13b{bottom:633.629400px;}
.y177{bottom:636.237300px;}
.y191{bottom:638.037300px;}
.y30{bottom:638.250300px;}
.ya{bottom:638.662350px;}
.y118{bottom:640.051500px;}
.y1be{bottom:641.637300px;}
.y1ab{bottom:645.933450px;}
.ya7{bottom:648.837300px;}
.y56{bottom:652.339650px;}
.y76{bottom:652.341300px;}
.yda{bottom:653.133300px;}
.y81{bottom:653.133450px;}
.y13a{bottom:653.429400px;}
.y176{bottom:656.037300px;}
.y2f{bottom:658.050300px;}
.y9{bottom:658.462350px;}
.y1bd{bottom:659.637300px;}
.y1aa{bottom:663.933450px;}
.ya6{bottom:668.637300px;}
.y55{bottom:672.139650px;}
.y75{bottom:672.141300px;}
.yc6{bottom:672.933300px;}
.y80{bottom:672.933450px;}
.y139{bottom:673.229400px;}
.y175{bottom:675.837300px;}
.y1bc{bottom:677.637300px;}
.y2e{bottom:677.850300px;}
.y8{bottom:678.262350px;}
.y1a9{bottom:681.933450px;}
.yc0{bottom:687.024300px;}
.ya5{bottom:688.437300px;}
.y54{bottom:691.939650px;}
.y74{bottom:691.941300px;}
.y7f{bottom:692.733300px;}
.yf2{bottom:692.733450px;}
.y138{bottom:693.029400px;}
.y174{bottom:695.637300px;}
.y2d{bottom:697.650300px;}
.y7{bottom:698.062350px;}
.y1a8{bottom:699.933450px;}
.ya4{bottom:708.237300px;}
.y10c{bottom:710.088300px;}
.y53{bottom:711.741300px;}
.y7e{bottom:712.533300px;}
.yf1{bottom:712.533450px;}
.y137{bottom:712.829400px;}
.y1bb{bottom:713.637300px;}
.y173{bottom:715.437300px;}
.y2c{bottom:717.450300px;}
.y1a7{bottom:717.933450px;}
.ya3{bottom:728.037300px;}
.y52{bottom:731.541300px;}
.y1ba{bottom:731.637300px;}
.y7d{bottom:732.333300px;}
.yf0{bottom:732.333450px;}
.y172{bottom:735.237300px;}
.y1a6{bottom:735.933450px;}
.y2b{bottom:737.250300px;}
.y6{bottom:737.662350px;}
.y73{bottom:746.424300px;}
.y136{bottom:749.637300px;}
.y51{bottom:751.341300px;}
.y7c{bottom:752.133300px;}
.yef{bottom:752.133450px;}
.y1a5{bottom:753.933450px;}
.y171{bottom:755.037300px;}
.y2a{bottom:757.050300px;}
.y5{bottom:765.966300px;}
.ya2{bottom:767.637300px;}
.y50{bottom:771.141300px;}
.y7b{bottom:771.933300px;}
.yee{bottom:771.933450px;}
.y170{bottom:774.837300px;}
.y29{bottom:776.850300px;}
.ya1{bottom:785.637300px;}
.y15a{bottom:790.941300px;}
.y72{bottom:791.733300px;}
.yf7{bottom:791.733450px;}
.y16f{bottom:794.637300px;}
.y28{bottom:796.650300px;}
.ya0{bottom:803.637300px;}
.y4f{bottom:805.824300px;}
.y159{bottom:810.741300px;}
.y71{bottom:811.533300px;}
.yf6{bottom:811.533450px;}
.y16e{bottom:814.437300px;}
.y27{bottom:816.450300px;}
.y9f{bottom:821.637300px;}
.y70{bottom:831.333300px;}
.yf5{bottom:831.333450px;}
.y16d{bottom:834.237300px;}
.y26{bottom:836.250300px;}
.y9e{bottom:839.637300px;}
.y158{bottom:845.424300px;}
.y4e{bottom:851.133300px;}
.yf4{bottom:851.133450px;}
.y16c{bottom:854.037300px;}
.y25{bottom:856.050300px;}
.y9d{bottom:857.637300px;}
.y4d{bottom:870.933300px;}
.yf3{bottom:870.933450px;}
.y9c{bottom:875.637300px;}
.y24{bottom:875.850300px;}
.y4c{bottom:890.733300px;}
.y9b{bottom:893.637300px;}
.y23{bottom:910.533300px;}
.y9a{bottom:911.637300px;}
.y22{bottom:944.548950px;}
.y4b{bottom:945.652950px;}
.ha{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h2{height:38.592000px;}
.h8{height:40.080000px;}
.h9{height:43.416000px;}
.h5{height:44.088000px;}
.h6{height:48.240000px;}
.hb{height:53.057400px;}
.h7{height:53.064000px;}
.hc{height:53.064600px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:97.795200px;}
.x1{left:106.299150px;}
.xa{left:114.803100px;}
.x4{left:118.247550px;}
.xe{left:123.291450px;}
.x15{left:136.395150px;}
.x12{left:153.070800px;}
.x11{left:161.572800px;}
.x5{left:164.371800px;}
.x13{left:170.080800px;}
.x10{left:178.582800px;}
.xd{left:185.004750px;}
.x6{left:420.855600px;}
.x2{left:441.663150px;}
.x9{left:498.831600px;}
.x7{left:501.921600px;}
.x3{left:510.696450px;}
.x8{left:534.156600px;}
.x14{left:602.715450px;}
.xc{left:603.903000px;}
.xf{left:605.536800px;}
@media print{
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:14.552000pt;}
.ls3{letter-spacing:-3.520000pt;}
.ls4{letter-spacing:-2.053333pt;}
.ls1b{letter-spacing:-2.026667pt;}
.ls1a{letter-spacing:-1.920000pt;}
.ls1{letter-spacing:-1.466667pt;}
.ls7{letter-spacing:-1.173333pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls5{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.522368pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.432000pt;}
.ls6{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.348245pt;}
.ls1d{letter-spacing:-0.313421pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.104474pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.005867pt;}
.ls11{letter-spacing:0.174123pt;}
.ls12{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.522368pt;}
.lsf{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.997333pt;}
.ls14{letter-spacing:5.104000pt;}
.ls17{letter-spacing:5.952000pt;}
.ls13{letter-spacing:7.274667pt;}
.ls2{letter-spacing:8.213333pt;}
.wsd{word-spacing:-11.616000pt;}
.ws3d{word-spacing:-11.557333pt;}
.ws37{word-spacing:-11.029333pt;}
.ws7{word-spacing:-10.677333pt;}
.ws1{word-spacing:-10.560000pt;}
.ws28{word-spacing:-10.501333pt;}
.ws27{word-spacing:-10.442667pt;}
.ws2c{word-spacing:-10.384000pt;}
.ws67{word-spacing:-10.090667pt;}
.ws7f{word-spacing:-10.026667pt;}
.ws1b{word-spacing:-9.797333pt;}
.ws22{word-spacing:-9.706667pt;}
.ws4e{word-spacing:-9.653333pt;}
.wsc{word-spacing:-9.562667pt;}
.ws2{word-spacing:-9.504000pt;}
.ws42{word-spacing:-9.360000pt;}
.ws4f{word-spacing:-9.173333pt;}
.ws1c{word-spacing:-8.736000pt;}
.ws43{word-spacing:-8.592000pt;}
.ws0{word-spacing:-8.448000pt;}
.ws4d{word-spacing:-8.256000pt;}
.wsa{word-spacing:-8.213333pt;}
.ws69{word-spacing:-7.824000pt;}
.ws3c{word-spacing:-7.417626pt;}
.ws45{word-spacing:-7.274667pt;}
.ws6{word-spacing:-7.157333pt;}
.ws3e{word-spacing:-7.069380pt;}
.wse{word-spacing:-6.895258pt;}
.ws41{word-spacing:-6.790784pt;}
.ws68{word-spacing:-6.581837pt;}
.ws30{word-spacing:-6.547012pt;}
.ws38{word-spacing:-6.372890pt;}
.ws4b{word-spacing:-5.952000pt;}
.ws47{word-spacing:-5.104000pt;}
.ws85{word-spacing:-3.786667pt;}
.ws83{word-spacing:-3.146667pt;}
.ws82{word-spacing:-2.453333pt;}
.ws75{word-spacing:-2.400000pt;}
.ws65{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.170667pt;}
.ws44{word-spacing:-2.053333pt;}
.ws59{word-spacing:-1.813333pt;}
.ws73{word-spacing:-1.642667pt;}
.ws15{word-spacing:-1.349333pt;}
.ws14{word-spacing:-1.232000pt;}
.ws1f{word-spacing:-1.173333pt;}
.ws63{word-spacing:-1.114667pt;}
.ws6c{word-spacing:-1.056000pt;}
.ws36{word-spacing:-0.997333pt;}
.ws81{word-spacing:-0.906667pt;}
.ws3f{word-spacing:-0.880000pt;}
.ws52{word-spacing:-0.640000pt;}
.ws74{word-spacing:-0.533333pt;}
.ws7a{word-spacing:-0.480000pt;}
.ws1d{word-spacing:-0.410667pt;}
.ws50{word-spacing:-0.320000pt;}
.ws40{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.176000pt;}
.ws31{word-spacing:-0.117333pt;}
.ws3{word-spacing:0.000000pt;}
.ws55{word-spacing:0.053333pt;}
.ws2e{word-spacing:0.058667pt;}
.ws49{word-spacing:0.144000pt;}
.ws78{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.176000pt;}
.ws23{word-spacing:0.213333pt;}
.ws80{word-spacing:0.266667pt;}
.ws70{word-spacing:0.288000pt;}
.ws57{word-spacing:0.373333pt;}
.ws1e{word-spacing:0.410667pt;}
.ws76{word-spacing:0.426667pt;}
.ws6d{word-spacing:0.432000pt;}
.ws84{word-spacing:0.533333pt;}
.ws6a{word-spacing:0.645333pt;}
.ws61{word-spacing:0.704000pt;}
.ws51{word-spacing:0.746667pt;}
.ws48{word-spacing:0.768000pt;}
.ws29{word-spacing:0.821333pt;}
.ws19{word-spacing:0.880000pt;}
.ws2d{word-spacing:0.938667pt;}
.ws2f{word-spacing:0.960000pt;}
.ws6f{word-spacing:0.997333pt;}
.ws54{word-spacing:1.226667pt;}
.ws64{word-spacing:1.232000pt;}
.ws7d{word-spacing:1.333333pt;}
.ws20{word-spacing:1.408000pt;}
.wsb{word-spacing:1.584000pt;}
.ws58{word-spacing:1.600000pt;}
.ws56{word-spacing:1.920000pt;}
.ws6b{word-spacing:1.994667pt;}
.ws5a{word-spacing:2.026667pt;}
.ws53{word-spacing:2.133333pt;}
.wsf{word-spacing:2.170667pt;}
.ws72{word-spacing:2.229333pt;}
.ws7b{word-spacing:2.506667pt;}
.ws8{word-spacing:2.698667pt;}
.ws77{word-spacing:2.773333pt;}
.ws39{word-spacing:2.816000pt;}
.ws3a{word-spacing:2.880000pt;}
.ws11{word-spacing:2.992000pt;}
.ws7e{word-spacing:3.253333pt;}
.ws62{word-spacing:3.285333pt;}
.ws10{word-spacing:3.344000pt;}
.ws18{word-spacing:3.520000pt;}
.ws5c{word-spacing:3.733333pt;}
.ws25{word-spacing:3.754667pt;}
.ws46{word-spacing:3.872000pt;}
.ws6e{word-spacing:4.224000pt;}
.ws13{word-spacing:4.400000pt;}
.ws35{word-spacing:4.517333pt;}
.ws24{word-spacing:4.634667pt;}
.ws60{word-spacing:4.752000pt;}
.ws5e{word-spacing:4.869333pt;}
.ws5f{word-spacing:5.221333pt;}
.ws4a{word-spacing:5.472000pt;}
.ws5b{word-spacing:5.813333pt;}
.ws17{word-spacing:5.925333pt;}
.ws32{word-spacing:6.101333pt;}
.ws12{word-spacing:6.218667pt;}
.ws7c{word-spacing:6.720000pt;}
.ws9{word-spacing:7.509333pt;}
.ws79{word-spacing:10.133333pt;}
.ws1a{word-spacing:11.792000pt;}
.ws86{word-spacing:16.053333pt;}
.ws5{word-spacing:457.476267pt;}
.ws4c{word-spacing:551.980800pt;}
.ws16{word-spacing:552.391467pt;}
.ws71{word-spacing:553.212800pt;}
.ws34{word-spacing:553.623467pt;}
.ws66{word-spacing:554.151467pt;}
.ws3b{word-spacing:554.562133pt;}
.ws5d{word-spacing:555.618133pt;}
.ws2b{word-spacing:556.322133pt;}
.ws21{word-spacing:559.548800pt;}
.ws4{word-spacing:561.132800pt;}
._11{margin-left:-11.029333pt;}
._e{margin-left:-8.698667pt;}
._10{margin-left:-6.365333pt;}
._d{margin-left:-5.053867pt;}
._8{margin-left:-4.000000pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-1.292800pt;}
._2{width:1.213333pt;}
._5{width:2.354667pt;}
._6{width:3.371200pt;}
._a{width:4.399467pt;}
._4{width:5.393067pt;}
._3{width:6.292800pt;}
._7{width:7.818667pt;}
._9{width:9.546667pt;}
._f{width:10.586133pt;}
._13{width:11.636267pt;}
._b{width:12.528000pt;}
._c{width:13.901333pt;}
._16{width:15.349333pt;}
._17{width:16.329600pt;}
._12{width:17.355733pt;}
._15{width:28.986667pt;}
._14{width:30.004267pt;}
.fs5{font-size:34.824533pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y4{bottom:51.023600pt;}
.y1{bottom:61.133867pt;}
.y3{bottom:63.960533pt;}
.y190{bottom:103.936933pt;}
.y6f{bottom:103.937067pt;}
.yd9{bottom:103.937200pt;}
.y135{bottom:104.934667pt;}
.y155{bottom:105.626133pt;}
.y1d9{bottom:106.344267pt;}
.ybf{bottom:107.576533pt;}
.y4a{bottom:109.733600pt;}
.y117{bottom:112.180133pt;}
.y18f{bottom:118.336933pt;}
.y6e{bottom:118.337067pt;}
.y134{bottom:120.934667pt;}
.y99{bottom:121.976533pt;}
.yd8{bottom:121.976667pt;}
.y1d8{bottom:122.344267pt;}
.y154{bottom:123.226133pt;}
.y49{bottom:127.333600pt;}
.y116{bottom:129.780133pt;}
.y6d{bottom:132.737067pt;}
.y18e{bottom:136.376400pt;}
.y7a{bottom:136.376533pt;}
.yd7{bottom:136.376800pt;}
.y133{bottom:136.934667pt;}
.y1d7{bottom:138.344267pt;}
.y21{bottom:140.185467pt;}
.y153{bottom:140.826133pt;}
.ybe{bottom:144.744267pt;}
.y48{bottom:144.933600pt;}
.y18d{bottom:147.136933pt;}
.yd0{bottom:147.137067pt;}
.y98{bottom:147.137200pt;}
.y115{bottom:147.380133pt;}
.y6c{bottom:150.776533pt;}
.yd6{bottom:150.776933pt;}
.y132{bottom:152.934667pt;}
.y1d6{bottom:154.344267pt;}
.y152{bottom:158.426133pt;}
.yc5{bottom:161.537067pt;}
.y20{bottom:162.052133pt;}
.ybd{bottom:162.344267pt;}
.y47{bottom:162.533600pt;}
.y114{bottom:164.980133pt;}
.y18c{bottom:165.176400pt;}
.yed{bottom:165.176533pt;}
.y97{bottom:165.176667pt;}
.y131{bottom:168.934667pt;}
.y1d5{bottom:170.344267pt;}
.y16b{bottom:173.457467pt;}
.y79{bottom:175.057467pt;}
.y157{bottom:175.763067pt;}
.ycf{bottom:175.937067pt;}
.y151{bottom:176.026133pt;}
.y1f{bottom:178.052133pt;}
.yc4{bottom:179.576533pt;}
.ybc{bottom:179.944267pt;}
.y46{bottom:180.133600pt;}
.y113{bottom:182.580133pt;}
.y130{bottom:184.934667pt;}
.y1d4{bottom:186.344267pt;}
.y16a{bottom:189.457467pt;}
.yce{bottom:190.337067pt;}
.y78{bottom:192.657467pt;}
.y156{bottom:193.363067pt;}
.y150{bottom:193.626133pt;}
.y1e{bottom:194.052133pt;}
.ybb{bottom:197.544267pt;}
.y45{bottom:197.733600pt;}
.y112{bottom:200.180133pt;}
.y12f{bottom:200.934667pt;}
.y1d3{bottom:202.344267pt;}
.y18b{bottom:203.944267pt;}
.y96{bottom:204.562933pt;}
.ycd{bottom:204.737067pt;}
.y169{bottom:205.457467pt;}
.yec{bottom:208.376533pt;}
.y1a4{bottom:209.626133pt;}
.y1d{bottom:210.052133pt;}
.y6b{bottom:210.257467pt;}
.yd5{bottom:210.962933pt;}
.y14f{bottom:211.226133pt;}
.yba{bottom:215.144267pt;}
.y44{bottom:215.333600pt;}
.y12e{bottom:216.934667pt;}
.y111{bottom:217.780133pt;}
.y1d2{bottom:218.344267pt;}
.ycc{bottom:219.137067pt;}
.y18a{bottom:219.944267pt;}
.y95{bottom:220.562933pt;}
.y168{bottom:221.457467pt;}
.y10a{bottom:222.776533pt;}
.y1a3{bottom:225.626133pt;}
.y1c{bottom:226.052133pt;}
.y1b9{bottom:226.257467pt;}
.y6a{bottom:227.857467pt;}
.yd4{bottom:228.562933pt;}
.y14e{bottom:228.826133pt;}
.yb9{bottom:232.744267pt;}
.y43{bottom:232.933600pt;}
.y12d{bottom:232.934667pt;}
.y109{bottom:233.537067pt;}
.y1d1{bottom:234.344267pt;}
.y110{bottom:235.380133pt;}
.y189{bottom:235.944267pt;}
.y94{bottom:236.562933pt;}
.ycb{bottom:237.176533pt;}
.y167{bottom:237.457467pt;}
.y1a2{bottom:241.626133pt;}
.y1b{bottom:242.052133pt;}
.y1b8{bottom:242.257467pt;}
.y69{bottom:245.457467pt;}
.yd3{bottom:246.162933pt;}
.y14d{bottom:246.426133pt;}
.yca{bottom:247.937067pt;}
.y12c{bottom:248.934667pt;}
.yb8{bottom:250.344267pt;}
.y42{bottom:250.533600pt;}
.y108{bottom:251.576533pt;}
.y188{bottom:251.944267pt;}
.y93{bottom:252.562933pt;}
.y10f{bottom:252.980133pt;}
.y166{bottom:253.457467pt;}
.y1a1{bottom:257.626133pt;}
.y1a{bottom:258.052133pt;}
.y1b7{bottom:258.257467pt;}
.yc9{bottom:262.337067pt;}
.y68{bottom:263.057467pt;}
.yd2{bottom:263.762933pt;}
.y14c{bottom:264.026133pt;}
.y12b{bottom:264.934667pt;}
.y107{bottom:265.976533pt;}
.y1d0{bottom:266.344267pt;}
.yb7{bottom:267.944267pt;}
.y41{bottom:268.133600pt;}
.y92{bottom:268.562933pt;}
.y165{bottom:269.457467pt;}
.y1a0{bottom:273.626133pt;}
.y19{bottom:274.052133pt;}
.y1b6{bottom:274.257467pt;}
.y106{bottom:276.737067pt;}
.y10b{bottom:280.376533pt;}
.y67{bottom:280.657467pt;}
.y12a{bottom:280.934667pt;}
.yeb{bottom:281.362933pt;}
.yd1{bottom:281.363067pt;}
.y14b{bottom:281.626133pt;}
.y1cf{bottom:282.344267pt;}
.y10e{bottom:283.809467pt;}
.y187{bottom:283.944267pt;}
.y91{bottom:284.562933pt;}
.y164{bottom:285.457467pt;}
.yb6{bottom:285.544267pt;}
.y40{bottom:285.733600pt;}
.y19f{bottom:289.626133pt;}
.y1b5{bottom:290.257467pt;}
.y105{bottom:291.137067pt;}
.y18{bottom:293.825467pt;}
.y129{bottom:296.934667pt;}
.y66{bottom:298.257467pt;}
.y1ce{bottom:298.344267pt;}
.yea{bottom:298.962933pt;}
.yc8{bottom:298.963067pt;}
.y14a{bottom:299.226133pt;}
.y186{bottom:299.944267pt;}
.y90{bottom:300.562933pt;}
.y163{bottom:301.457467pt;}
.yb5{bottom:303.144267pt;}
.y3f{bottom:303.333600pt;}
.y104{bottom:305.537067pt;}
.y19e{bottom:305.626133pt;}
.y1b4{bottom:306.257467pt;}
.y128{bottom:312.934667pt;}
.y1cd{bottom:314.344267pt;}
.y65{bottom:315.857467pt;}
.y185{bottom:315.944267pt;}
.ye9{bottom:316.562933pt;}
.yc7{bottom:316.563067pt;}
.y149{bottom:316.826133pt;}
.y17{bottom:317.385467pt;}
.y162{bottom:317.457467pt;}
.y103{bottom:319.937067pt;}
.yb4{bottom:320.744267pt;}
.y3e{bottom:320.933600pt;}
.y19d{bottom:321.626133pt;}
.y1b3{bottom:322.257467pt;}
.y127{bottom:328.934667pt;}
.y1cc{bottom:330.344267pt;}
.y184{bottom:331.944267pt;}
.y16{bottom:333.385467pt;}
.y64{bottom:333.457467pt;}
.ye8{bottom:334.162933pt;}
.y8f{bottom:334.163067pt;}
.y148{bottom:334.426133pt;}
.y19c{bottom:337.626133pt;}
.y102{bottom:337.976533pt;}
.y1b2{bottom:338.257467pt;}
.yb3{bottom:338.344267pt;}
.y3d{bottom:338.533600pt;}
.y10d{bottom:341.687867pt;}
.y126{bottom:344.934667pt;}
.y1cb{bottom:346.344267pt;}
.y183{bottom:347.944267pt;}
.y101{bottom:348.737067pt;}
.y15{bottom:349.385467pt;}
.y63{bottom:351.057467pt;}
.ye7{bottom:351.762933pt;}
.y8e{bottom:351.763067pt;}
.y147{bottom:352.026133pt;}
.y19b{bottom:353.626133pt;}
.y1b1{bottom:354.257467pt;}
.y3c{bottom:356.133600pt;}
.y125{bottom:360.934667pt;}
.y1ca{bottom:362.344267pt;}
.y100{bottom:363.137067pt;}
.y182{bottom:363.944267pt;}
.y14{bottom:365.385467pt;}
.y62{bottom:368.657467pt;}
.ye6{bottom:369.362933pt;}
.y8d{bottom:369.363067pt;}
.y146{bottom:369.626133pt;}
.y1b0{bottom:370.257467pt;}
.yb2{bottom:373.544267pt;}
.y3b{bottom:373.733600pt;}
.y124{bottom:376.934667pt;}
.yff{bottom:377.537067pt;}
.y1c9{bottom:378.344267pt;}
.y181{bottom:379.944267pt;}
.y13{bottom:381.385467pt;}
.y19a{bottom:385.626133pt;}
.y61{bottom:386.257467pt;}
.y161{bottom:386.258933pt;}
.ye5{bottom:386.962933pt;}
.y8c{bottom:386.963067pt;}
.y145{bottom:387.226133pt;}
.yb1{bottom:389.544267pt;}
.y3a{bottom:391.333600pt;}
.yfe{bottom:391.937067pt;}
.y123{bottom:392.934667pt;}
.y1c8{bottom:394.344267pt;}
.y180{bottom:395.944267pt;}
.y12{bottom:397.385467pt;}
.y1af{bottom:399.488400pt;}
.y60{bottom:403.857467pt;}
.y160{bottom:403.858933pt;}
.ye4{bottom:404.562933pt;}
.y8b{bottom:404.563067pt;}
.y144{bottom:404.826133pt;}
.yb0{bottom:405.544267pt;}
.yfd{bottom:406.337067pt;}
.y39{bottom:408.933600pt;}
.y122{bottom:408.934667pt;}
.y1c7{bottom:410.344267pt;}
.y17f{bottom:411.944267pt;}
.y11{bottom:413.385467pt;}
.y199{bottom:419.226133pt;}
.yfc{bottom:420.737067pt;}
.y5f{bottom:421.457467pt;}
.y15f{bottom:421.458933pt;}
.yaf{bottom:421.544267pt;}
.ye3{bottom:422.162933pt;}
.y8a{bottom:422.163067pt;}
.y143{bottom:422.426133pt;}
.y121{bottom:424.934667pt;}
.y1c6{bottom:426.344267pt;}
.y38{bottom:426.533600pt;}
.y17e{bottom:427.944267pt;}
.y10{bottom:429.385467pt;}
.yfb{bottom:435.137067pt;}
.y198{bottom:436.826133pt;}
.yae{bottom:437.544267pt;}
.y5e{bottom:439.057467pt;}
.y15e{bottom:439.058933pt;}
.ye2{bottom:439.762933pt;}
.y89{bottom:439.763067pt;}
.y142{bottom:440.026133pt;}
.y120{bottom:440.934667pt;}
.y1c5{bottom:442.344267pt;}
.y17d{bottom:443.944267pt;}
.y37{bottom:444.133600pt;}
.yf{bottom:445.385467pt;}
.yfa{bottom:449.537067pt;}
.y197{bottom:454.426133pt;}
.y5d{bottom:456.657467pt;}
.y15d{bottom:456.658933pt;}
.y11f{bottom:456.934667pt;}
.ye1{bottom:457.362933pt;}
.y88{bottom:457.363067pt;}
.y141{bottom:457.626133pt;}
.y1c4{bottom:458.344267pt;}
.y36{bottom:461.733600pt;}
.yf9{bottom:463.937067pt;}
.ye{bottom:465.158800pt;}
.yad{bottom:471.144267pt;}
.y11e{bottom:472.934667pt;}
.y5c{bottom:474.257467pt;}
.y15c{bottom:474.258933pt;}
.y1c3{bottom:474.344267pt;}
.ye0{bottom:474.962933pt;}
.y87{bottom:474.963067pt;}
.y140{bottom:475.226133pt;}
.y17c{bottom:477.544267pt;}
.y35{bottom:479.333600pt;}
.yf8{bottom:481.976533pt;}
.y196{bottom:487.144267pt;}
.yac{bottom:488.744267pt;}
.y11d{bottom:488.934667pt;}
.y1c2{bottom:490.344267pt;}
.y5b{bottom:491.857467pt;}
.y15b{bottom:491.858933pt;}
.ydf{bottom:492.562933pt;}
.y86{bottom:492.563067pt;}
.y13f{bottom:492.826133pt;}
.y17b{bottom:495.144267pt;}
.y34{bottom:496.933600pt;}
.y195{bottom:503.144267pt;}
.y11c{bottom:504.934667pt;}
.yd{bottom:506.321333pt;}
.yab{bottom:506.344267pt;}
.y5a{bottom:509.457467pt;}
.yc3{bottom:509.458933pt;}
.yde{bottom:510.162933pt;}
.y85{bottom:510.163067pt;}
.y13e{bottom:510.426133pt;}
.y17a{bottom:512.744267pt;}
.y33{bottom:514.533600pt;}
.y194{bottom:519.144267pt;}
.yc{bottom:519.653333pt;}
.y11b{bottom:520.934667pt;}
.y1c1{bottom:522.344267pt;}
.yaa{bottom:523.944267pt;}
.y1ae{bottom:526.163067pt;}
.y59{bottom:527.057467pt;}
.yc2{bottom:527.058933pt;}
.ydd{bottom:527.762933pt;}
.y84{bottom:527.763067pt;}
.y13d{bottom:528.026133pt;}
.y179{bottom:530.344267pt;}
.y32{bottom:532.133600pt;}
.y193{bottom:535.144267pt;}
.yb{bottom:536.765333pt;}
.y11a{bottom:536.934667pt;}
.y1c0{bottom:538.344267pt;}
.ya9{bottom:541.544267pt;}
.y1ad{bottom:542.163067pt;}
.y58{bottom:544.657467pt;}
.yc1{bottom:544.658933pt;}
.ydc{bottom:545.362933pt;}
.y83{bottom:545.363067pt;}
.y13c{bottom:545.626133pt;}
.y178{bottom:547.944267pt;}
.y31{bottom:549.733600pt;}
.y192{bottom:551.144267pt;}
.y119{bottom:552.934667pt;}
.y1bf{bottom:554.344267pt;}
.y1ac{bottom:558.163067pt;}
.ya8{bottom:559.144267pt;}
.y57{bottom:562.257467pt;}
.y77{bottom:562.258933pt;}
.ydb{bottom:562.962933pt;}
.y82{bottom:562.963067pt;}
.y13b{bottom:563.226133pt;}
.y177{bottom:565.544267pt;}
.y191{bottom:567.144267pt;}
.y30{bottom:567.333600pt;}
.ya{bottom:567.699867pt;}
.y118{bottom:568.934667pt;}
.y1be{bottom:570.344267pt;}
.y1ab{bottom:574.163067pt;}
.ya7{bottom:576.744267pt;}
.y56{bottom:579.857467pt;}
.y76{bottom:579.858933pt;}
.yda{bottom:580.562933pt;}
.y81{bottom:580.563067pt;}
.y13a{bottom:580.826133pt;}
.y176{bottom:583.144267pt;}
.y2f{bottom:584.933600pt;}
.y9{bottom:585.299867pt;}
.y1bd{bottom:586.344267pt;}
.y1aa{bottom:590.163067pt;}
.ya6{bottom:594.344267pt;}
.y55{bottom:597.457467pt;}
.y75{bottom:597.458933pt;}
.yc6{bottom:598.162933pt;}
.y80{bottom:598.163067pt;}
.y139{bottom:598.426133pt;}
.y175{bottom:600.744267pt;}
.y1bc{bottom:602.344267pt;}
.y2e{bottom:602.533600pt;}
.y8{bottom:602.899867pt;}
.y1a9{bottom:606.163067pt;}
.yc0{bottom:610.688267pt;}
.ya5{bottom:611.944267pt;}
.y54{bottom:615.057467pt;}
.y74{bottom:615.058933pt;}
.y7f{bottom:615.762933pt;}
.yf2{bottom:615.763067pt;}
.y138{bottom:616.026133pt;}
.y174{bottom:618.344267pt;}
.y2d{bottom:620.133600pt;}
.y7{bottom:620.499867pt;}
.y1a8{bottom:622.163067pt;}
.ya4{bottom:629.544267pt;}
.y10c{bottom:631.189600pt;}
.y53{bottom:632.658933pt;}
.y7e{bottom:633.362933pt;}
.yf1{bottom:633.363067pt;}
.y137{bottom:633.626133pt;}
.y1bb{bottom:634.344267pt;}
.y173{bottom:635.944267pt;}
.y2c{bottom:637.733600pt;}
.y1a7{bottom:638.163067pt;}
.ya3{bottom:647.144267pt;}
.y52{bottom:650.258933pt;}
.y1ba{bottom:650.344267pt;}
.y7d{bottom:650.962933pt;}
.yf0{bottom:650.963067pt;}
.y172{bottom:653.544267pt;}
.y1a6{bottom:654.163067pt;}
.y2b{bottom:655.333600pt;}
.y6{bottom:655.699867pt;}
.y73{bottom:663.488267pt;}
.y136{bottom:666.344267pt;}
.y51{bottom:667.858933pt;}
.y7c{bottom:668.562933pt;}
.yef{bottom:668.563067pt;}
.y1a5{bottom:670.163067pt;}
.y171{bottom:671.144267pt;}
.y2a{bottom:672.933600pt;}
.y5{bottom:680.858933pt;}
.ya2{bottom:682.344267pt;}
.y50{bottom:685.458933pt;}
.y7b{bottom:686.162933pt;}
.yee{bottom:686.163067pt;}
.y170{bottom:688.744267pt;}
.y29{bottom:690.533600pt;}
.ya1{bottom:698.344267pt;}
.y15a{bottom:703.058933pt;}
.y72{bottom:703.762933pt;}
.yf7{bottom:703.763067pt;}
.y16f{bottom:706.344267pt;}
.y28{bottom:708.133600pt;}
.ya0{bottom:714.344267pt;}
.y4f{bottom:716.288267pt;}
.y159{bottom:720.658933pt;}
.y71{bottom:721.362933pt;}
.yf6{bottom:721.363067pt;}
.y16e{bottom:723.944267pt;}
.y27{bottom:725.733600pt;}
.y9f{bottom:730.344267pt;}
.y70{bottom:738.962933pt;}
.yf5{bottom:738.963067pt;}
.y16d{bottom:741.544267pt;}
.y26{bottom:743.333600pt;}
.y9e{bottom:746.344267pt;}
.y158{bottom:751.488267pt;}
.y4e{bottom:756.562933pt;}
.yf4{bottom:756.563067pt;}
.y16c{bottom:759.144267pt;}
.y25{bottom:760.933600pt;}
.y9d{bottom:762.344267pt;}
.y4d{bottom:774.162933pt;}
.yf3{bottom:774.163067pt;}
.y9c{bottom:778.344267pt;}
.y24{bottom:778.533600pt;}
.y4c{bottom:791.762933pt;}
.y9b{bottom:794.344267pt;}
.y23{bottom:809.362933pt;}
.y9a{bottom:810.344267pt;}
.y22{bottom:839.599067pt;}
.y4b{bottom:840.580400pt;}
.ha{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h2{height:34.304000pt;}
.h8{height:35.626667pt;}
.h9{height:38.592000pt;}
.h5{height:39.189333pt;}
.h6{height:42.880000pt;}
.hb{height:47.162133pt;}
.h7{height:47.168000pt;}
.hc{height:47.168533pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:86.929067pt;}
.x1{left:94.488133pt;}
.xa{left:102.047200pt;}
.x4{left:105.108933pt;}
.xe{left:109.592400pt;}
.x15{left:121.240133pt;}
.x12{left:136.062933pt;}
.x11{left:143.620267pt;}
.x5{left:146.108267pt;}
.x13{left:151.182933pt;}
.x10{left:158.740267pt;}
.xd{left:164.448667pt;}
.x6{left:374.093867pt;}
.x2{left:392.589467pt;}
.x9{left:443.405867pt;}
.x7{left:446.152533pt;}
.x3{left:453.952400pt;}
.x8{left:474.805867pt;}
.x14{left:535.747067pt;}
.xc{left:536.802667pt;}
.xf{left:538.254933pt;}
}

