
    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_7588fa15cf01820c8b8c828e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_1f9e3502222099df201e0fb1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_09121c7c3fcdb0fc294da97c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971680;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_dca34103b8024af7a9d075ec.woff')format("woff");}.ff4{font-family:ff4;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_17cc2eb528eaf1a6fb43891d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8eda2611068983d7f565c0be.woff')format("woff");}.ff6{font-family:ff6;line-height:1.349000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_852cc3674a8f1b66ad2a8df3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2327d61184903884c57aa32b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e3f80dfeeea27cd517086d2e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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);}
.v2{vertical-align:-21.000000px;}
.v9{vertical-align:-18.900879px;}
.v5{vertical-align:-17.850040px;}
.v7{vertical-align:-10.811927px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.799194px;}
.v6{vertical-align:17.802040px;}
.v4{vertical-align:18.803963px;}
.v3{vertical-align:21.000000px;}
.ls36{letter-spacing:-0.756000px;}
.ls50{letter-spacing:-0.630000px;}
.ls2a{letter-spacing:-0.596700px;}
.ls3d{letter-spacing:-0.491400px;}
.ls28{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.456300px;}
.ls30{letter-spacing:-0.421200px;}
.ls34{letter-spacing:-0.386100px;}
.ls1e{letter-spacing:-0.378000px;}
.ls4f{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.351000px;}
.ls1b{letter-spacing:-0.324000px;}
.ls29{letter-spacing:-0.315900px;}
.ls2c{letter-spacing:-0.270000px;}
.ls40{letter-spacing:-0.245700px;}
.ls52{letter-spacing:-0.225000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.175500px;}
.ls1f{letter-spacing:-0.162000px;}
.ls31{letter-spacing:-0.140400px;}
.ls4d{letter-spacing:-0.135000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.105300px;}
.ls48{letter-spacing:-0.090000px;}
.ls2e{letter-spacing:-0.070200px;}
.ls25{letter-spacing:-0.054000px;}
.ls49{letter-spacing:-0.045000px;}
.ls27{letter-spacing:-0.035100px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013040px;}
.ls1{letter-spacing:0.013132px;}
.ls4{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls6{letter-spacing:0.018031px;}
.ls3f{letter-spacing:0.035100px;}
.ls4b{letter-spacing:0.045000px;}
.ls24{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.070200px;}
.ls51{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.105300px;}
.ls17{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126110px;}
.ls8{letter-spacing:0.140400px;}
.ls13{letter-spacing:0.142729px;}
.ls14{letter-spacing:0.142912px;}
.ls12{letter-spacing:0.157950px;}
.lsf{letter-spacing:0.159017px;}
.ls42{letter-spacing:0.159019px;}
.ls15{letter-spacing:0.159025px;}
.ls10{letter-spacing:0.159568px;}
.ls26{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.175500px;}
.ls4a{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.198025px;}
.ls45{letter-spacing:0.202500px;}
.ls5{letter-spacing:0.216000px;}
.ls46{letter-spacing:0.225000px;}
.ls16{letter-spacing:0.243000px;}
.lsd{letter-spacing:0.245700px;}
.ls44{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.270000px;}
.lse{letter-spacing:0.290452px;}
.ls1a{letter-spacing:0.293968px;}
.ls21{letter-spacing:0.324000px;}
.ls47{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378000px;}
.ls3e{letter-spacing:0.386100px;}
.ls3b{letter-spacing:0.397789px;}
.ls3c{letter-spacing:0.421200px;}
.ls19{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.486000px;}
.ls39{letter-spacing:0.491400px;}
.ls33{letter-spacing:0.526500px;}
.ls18{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.594000px;}
.ls4e{letter-spacing:0.630000px;}
.ls23{letter-spacing:0.648000px;}
.ls43{letter-spacing:0.702000px;}
.ls38{letter-spacing:0.756000px;}
.ls32{letter-spacing:0.810000px;}
.ls41{letter-spacing:1.728000px;}
.ls0{letter-spacing:3.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws53{word-spacing:-13.986000px;}
.ws5b{word-spacing:-13.860000px;}
.ws31{word-spacing:-13.596000px;}
.ws4f{word-spacing:-12.852000px;}
.ws12{word-spacing:-12.528000px;}
.ws47{word-spacing:-12.501000px;}
.ws1b{word-spacing:-12.474000px;}
.ws11{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws35{word-spacing:-12.258000px;}
.ws58{word-spacing:-12.150000px;}
.ws3a{word-spacing:-11.988000px;}
.ws26{word-spacing:-11.772000px;}
.ws39{word-spacing:-11.718000px;}
.wsc{word-spacing:-11.394000px;}
.ws5e{word-spacing:-10.530000px;}
.ws5c{word-spacing:-10.417500px;}
.ws5f{word-spacing:-10.350000px;}
.ws60{word-spacing:-10.215000px;}
.ws5d{word-spacing:-9.675000px;}
.wsb{word-spacing:-9.600000px;}
.ws37{word-spacing:-8.494200px;}
.ws42{word-spacing:-8.459100px;}
.ws48{word-spacing:-8.353800px;}
.ws49{word-spacing:-8.213400px;}
.ws10{word-spacing:-8.143200px;}
.ws55{word-spacing:-8.108100px;}
.ws27{word-spacing:-8.073000px;}
.wsd{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws4a{word-spacing:-8.002800px;}
.wse{word-spacing:-7.967700px;}
.ws24{word-spacing:-7.932600px;}
.ws33{word-spacing:-7.897500px;}
.wsf{word-spacing:-7.862400px;}
.ws36{word-spacing:-7.827300px;}
.ws3b{word-spacing:-7.792200px;}
.ws4b{word-spacing:-7.722000px;}
.ws25{word-spacing:-7.651800px;}
.ws32{word-spacing:-7.616700px;}
.ws38{word-spacing:-7.581600px;}
.ws34{word-spacing:-7.546500px;}
.ws3c{word-spacing:-7.511400px;}
.ws46{word-spacing:-7.476300px;}
.ws3{word-spacing:-7.371000px;}
.ws5{word-spacing:-6.630000px;}
.ws6e{word-spacing:-6.165000px;}
.ws71{word-spacing:-6.075000px;}
.ws6b{word-spacing:-6.030000px;}
.ws73{word-spacing:-5.715000px;}
.ws74{word-spacing:-5.535000px;}
.ws4c{word-spacing:-5.508000px;}
.ws2a{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.242000px;}
.ws18{word-spacing:-1.188000px;}
.ws4e{word-spacing:-1.134000px;}
.ws4d{word-spacing:-1.080000px;}
.ws63{word-spacing:-1.035000px;}
.ws2d{word-spacing:-1.026000px;}
.ws62{word-spacing:-0.990000px;}
.ws23{word-spacing:-0.972000px;}
.ws3d{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.810000px;}
.ws64{word-spacing:-0.765000px;}
.ws1d{word-spacing:-0.756000px;}
.ws67{word-spacing:-0.675000px;}
.ws13{word-spacing:-0.648000px;}
.ws45{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.486000px;}
.ws2f{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.386100px;}
.ws51{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.270000px;}
.ws61{word-spacing:-0.264000px;}
.ws68{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.ws65{word-spacing:-0.180000px;}
.ws70{word-spacing:-0.090000px;}
.ws6{word-spacing:0.000000px;}
.ws6d{word-spacing:0.045000px;}
.ws75{word-spacing:0.054000px;}
.ws66{word-spacing:0.090000px;}
.ws19{word-spacing:0.105300px;}
.ws6a{word-spacing:0.180000px;}
.ws59{word-spacing:0.216000px;}
.ws1f{word-spacing:0.270000px;}
.ws52{word-spacing:0.324000px;}
.ws40{word-spacing:0.378000px;}
.ws2c{word-spacing:0.432000px;}
.ws41{word-spacing:0.486000px;}
.ws7c{word-spacing:0.540000px;}
.ws16{word-spacing:0.594000px;}
.ws2e{word-spacing:0.702000px;}
.ws44{word-spacing:0.756000px;}
.ws29{word-spacing:0.864000px;}
.ws21{word-spacing:0.918000px;}
.ws57{word-spacing:0.972000px;}
.ws72{word-spacing:0.990000px;}
.ws6f{word-spacing:1.035000px;}
.ws3e{word-spacing:1.080000px;}
.ws56{word-spacing:1.134000px;}
.ws1a{word-spacing:1.188000px;}
.ws14{word-spacing:1.242000px;}
.ws22{word-spacing:1.350000px;}
.ws2b{word-spacing:1.404000px;}
.ws28{word-spacing:1.458000px;}
.ws6c{word-spacing:1.575000px;}
.ws5a{word-spacing:1.728000px;}
.ws54{word-spacing:1.890000px;}
.ws43{word-spacing:1.998000px;}
.ws7a{word-spacing:2.052000px;}
.ws3f{word-spacing:2.106000px;}
.ws76{word-spacing:3.024000px;}
.ws77{word-spacing:3.132000px;}
.ws7b{word-spacing:5.670000px;}
.ws9{word-spacing:5.967000px;}
.ws7d{word-spacing:6.264000px;}
.ws78{word-spacing:6.480000px;}
.ws79{word-spacing:6.750000px;}
.ws8{word-spacing:13.005000px;}
.wsa{word-spacing:14.331000px;}
.ws30{word-spacing:15.282000px;}
._2e{margin-left:-20.952007px;}
._31{margin-left:-16.005032px;}
._32{margin-left:-14.398217px;}
._2c{margin-left:-13.372218px;}
._19{margin-left:-11.874595px;}
._2d{margin-left:-10.132214px;}
._30{margin-left:-8.743801px;}
._2f{margin-left:-7.262055px;}
._7{margin-left:-5.977200px;}
._4{margin-left:-4.738800px;}
._2{margin-left:-3.523200px;}
._0{margin-left:-1.876800px;}
._6{width:1.655400px;}
._d{width:3.417000px;}
._c{width:4.667421px;}
._a{width:5.747451px;}
._b{width:6.946275px;}
._11{width:8.149800px;}
._e{width:9.165464px;}
._13{width:11.370546px;}
._12{width:13.042209px;}
._5{width:15.033579px;}
._f{width:16.896299px;}
._10{width:18.405900px;}
._14{width:19.482001px;}
._9{width:25.622575px;}
._8{width:26.866625px;}
._16{width:28.428525px;}
._15{width:29.845375px;}
._3{width:40.107808px;}
._20{width:51.095388px;}
._1a{width:139.396203px;}
._21{width:160.536603px;}
._1d{width:165.148802px;}
._1e{width:175.108795px;}
._26{width:181.021195px;}
._25{width:214.538395px;}
._24{width:217.174195px;}
._1b{width:218.667595px;}
._27{width:222.970795px;}
._18{width:249.690595px;}
._1f{width:254.496595px;}
._28{width:261.624595px;}
._2b{width:263.298595px;}
._29{width:271.457988px;}
._22{width:285.822000px;}
._23{width:287.064000px;}
._2a{width:296.244000px;}
._1c{width:298.944000px;}
._17{width:301.590000px;}
._1{width:319.060800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.199200px;}
.y40{bottom:3.199350px;}
.ybd{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y3f{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya1{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y3e{bottom:68.037600px;}
.yc9{bottom:79.378652px;}
.yf6{bottom:82.368600px;}
.y3d{bottom:83.037600px;}
.y9f{bottom:83.267097px;}
.ybc{bottom:83.387100px;}
.y11c{bottom:83.871152px;}
.y81{bottom:89.053052px;}
.yc8{bottom:94.377152px;}
.yf5{bottom:97.367100px;}
.y3c{bottom:98.037600px;}
.y11b{bottom:98.872652px;}
.y80{bottom:104.051552px;}
.y164{bottom:104.548200px;}
.yc7{bottom:109.375652px;}
.y3b{bottom:113.037600px;}
.y11a{bottom:113.871152px;}
.y7f{bottom:119.050052px;}
.y163{bottom:119.546700px;}
.yc6{bottom:124.374152px;}
.y3a{bottom:128.037600px;}
.y119{bottom:128.869652px;}
.y7e{bottom:134.048552px;}
.y162{bottom:134.545200px;}
.yc5{bottom:139.372652px;}
.y39{bottom:143.037600px;}
.y118{bottom:143.869652px;}
.y7d{bottom:149.047052px;}
.y161{bottom:149.543700px;}
.yc4{bottom:154.371152px;}
.y38{bottom:158.037600px;}
.y7c{bottom:164.045552px;}
.y160{bottom:164.542200px;}
.yc3{bottom:169.371152px;}
.y37{bottom:173.037600px;}
.y117{bottom:176.883152px;}
.y7b{bottom:179.047052px;}
.y15f{bottom:179.540700px;}
.yc2{bottom:184.371152px;}
.y36{bottom:188.037600px;}
.y116{bottom:191.881652px;}
.y7a{bottom:194.045552px;}
.y15e{bottom:194.539200px;}
.yc1{bottom:199.374152px;}
.y35{bottom:203.037600px;}
.y115{bottom:206.880152px;}
.y79{bottom:209.044052px;}
.y15d{bottom:209.537700px;}
.yc0{bottom:214.372652px;}
.y34{bottom:218.037600px;}
.y114{bottom:221.878652px;}
.y78{bottom:224.044052px;}
.y15c{bottom:224.536200px;}
.ybf{bottom:229.371152px;}
.y33{bottom:233.037600px;}
.y113{bottom:236.877152px;}
.y15b{bottom:239.534700px;}
.ybe{bottom:244.369652px;}
.y32{bottom:248.037600px;}
.y112{bottom:251.875652px;}
.y15a{bottom:254.533200px;}
.y77{bottom:257.047052px;}
.y31{bottom:263.037600px;}
.y111{bottom:266.874152px;}
.y159{bottom:269.531700px;}
.y76{bottom:272.045552px;}
.y30{bottom:278.037600px;}
.y110{bottom:281.872652px;}
.y158{bottom:284.530200px;}
.y75{bottom:287.044052px;}
.y2f{bottom:293.037600px;}
.y10f{bottom:296.871152px;}
.y157{bottom:299.528700px;}
.y74{bottom:302.044052px;}
.y2e{bottom:308.037600px;}
.ycc{bottom:310.534654px;}
.y10e{bottom:311.871152px;}
.y156{bottom:314.527200px;}
.y2d{bottom:323.037600px;}
.ycb{bottom:325.533154px;}
.y10d{bottom:326.874152px;}
.y155{bottom:329.525700px;}
.y73{bottom:335.047052px;}
.y2c{bottom:338.043600px;}
.yca{bottom:340.531654px;}
.y10c{bottom:341.872652px;}
.y154{bottom:344.524200px;}
.y72{bottom:350.045552px;}
.y2b{bottom:353.037600px;}
.y10b{bottom:356.871152px;}
.y153{bottom:359.524200px;}
.y71{bottom:365.045552px;}
.y2a{bottom:368.037600px;}
.y10a{bottom:371.874129px;}
.y70{bottom:380.051552px;}
.y29{bottom:383.037600px;}
.y109{bottom:386.872629px;}
.y152{bottom:389.692950px;}
.y6f{bottom:395.050052px;}
.y28{bottom:398.037600px;}
.y108{bottom:401.871129px;}
.y151{bottom:402.439200px;}
.y6e{bottom:410.048552px;}
.y27{bottom:413.037600px;}
.y150{bottom:415.185450px;}
.y107{bottom:416.871129px;}
.y6d{bottom:425.047052px;}
.y14f{bottom:427.931700px;}
.y106{bottom:431.872629px;}
.y26{bottom:432.494110px;}
.y6c{bottom:440.045552px;}
.y14e{bottom:440.677950px;}
.y105{bottom:446.871129px;}
.y14d{bottom:453.424200px;}
.y6b{bottom:455.045552px;}
.y104{bottom:461.871129px;}
.y14c{bottom:466.170450px;}
.y6a{bottom:470.047052px;}
.y103{bottom:476.871129px;}
.y14b{bottom:478.916700px;}
.y24{bottom:479.469315px;}
.yf4{bottom:484.983148px;}
.y69{bottom:485.045552px;}
.yb7{bottom:485.671181px;}
.y14a{bottom:491.662950px;}
.y102{bottom:491.871129px;}
.yf3{bottom:499.981648px;}
.y68{bottom:500.048552px;}
.yb6{bottom:500.669681px;}
.y149{bottom:504.409200px;}
.y101{bottom:506.871129px;}
.y23{bottom:514.731315px;}
.yf2{bottom:514.981648px;}
.y67{bottom:515.047052px;}
.yb5{bottom:515.668181px;}
.y148{bottom:517.155450px;}
.y100{bottom:521.871129px;}
.y147{bottom:529.901700px;}
.yf1{bottom:529.983148px;}
.y66{bottom:530.045552px;}
.yb4{bottom:530.666681px;}
.y22{bottom:531.228315px;}
.yff{bottom:536.871129px;}
.y146{bottom:542.647950px;}
.yf0{bottom:544.981648px;}
.y65{bottom:545.045552px;}
.yb3{bottom:545.665181px;}
.y21{bottom:547.725315px;}
.yfe{bottom:551.874129px;}
.y145{bottom:555.394200px;}
.yef{bottom:559.981648px;}
.y64{bottom:560.045552px;}
.yb2{bottom:560.665181px;}
.y20{bottom:564.222315px;}
.yfd{bottom:566.872629px;}
.y144{bottom:568.140450px;}
.yee{bottom:574.981648px;}
.y63{bottom:575.045552px;}
.yb1{bottom:575.671181px;}
.y1f{bottom:580.743315px;}
.y143{bottom:580.886700px;}
.yfc{bottom:581.871129px;}
.yed{bottom:589.981648px;}
.y62{bottom:590.048552px;}
.yb0{bottom:590.669681px;}
.y142{bottom:593.632950px;}
.yfb{bottom:596.874129px;}
.y1e{bottom:597.240315px;}
.yec{bottom:604.981648px;}
.y61{bottom:605.047052px;}
.yaf{bottom:605.668181px;}
.y141{bottom:606.379200px;}
.yfa{bottom:611.872629px;}
.y1d{bottom:613.737315px;}
.y140{bottom:619.125450px;}
.yeb{bottom:619.981648px;}
.y60{bottom:620.045552px;}
.yae{bottom:620.666681px;}
.yf9{bottom:626.871129px;}
.y1c{bottom:630.234315px;}
.y13f{bottom:631.871700px;}
.yea{bottom:634.992148px;}
.y5f{bottom:635.045552px;}
.yad{bottom:635.665181px;}
.yf8{bottom:641.871129px;}
.y13e{bottom:644.617950px;}
.y1b{bottom:646.731315px;}
.ye9{bottom:649.990648px;}
.y5e{bottom:650.045552px;}
.yac{bottom:650.665181px;}
.yf7{bottom:656.869629px;}
.y13d{bottom:657.364200px;}
.y1a{bottom:663.228315px;}
.ye8{bottom:664.989148px;}
.y5d{bottom:665.045552px;}
.yab{bottom:665.665181px;}
.y13c{bottom:670.110450px;}
.y19{bottom:679.725315px;}
.ye7{bottom:679.987648px;}
.y5c{bottom:680.045552px;}
.yaa{bottom:680.665181px;}
.y13b{bottom:682.856700px;}
.y9e{bottom:684.087767px;}
.ye6{bottom:694.986148px;}
.y5b{bottom:695.086006px;}
.y13a{bottom:695.602950px;}
.ya9{bottom:695.666681px;}
.y18{bottom:696.222315px;}
.y9d{bottom:699.086267px;}
.y139{bottom:708.349200px;}
.y11f{bottom:708.514642px;}
.ye5{bottom:709.984648px;}
.y5a{bottom:710.084506px;}
.ya8{bottom:710.665181px;}
.y17{bottom:712.719315px;}
.y9c{bottom:714.084767px;}
.y138{bottom:721.095450px;}
.y11e{bottom:723.513142px;}
.ye4{bottom:724.983148px;}
.ya7{bottom:725.668227px;}
.y9b{bottom:729.084767px;}
.y137{bottom:733.841700px;}
.y11d{bottom:738.511642px;}
.ye3{bottom:739.981648px;}
.ya6{bottom:740.666727px;}
.y15{bottom:742.719315px;}
.y59{bottom:743.078506px;}
.y9a{bottom:744.084767px;}
.y136{bottom:746.587950px;}
.y16{bottom:747.969315px;}
.ye2{bottom:754.983194px;}
.ya5{bottom:755.665227px;}
.y58{bottom:758.077006px;}
.y99{bottom:759.099721px;}
.y135{bottom:759.334200px;}
.y13{bottom:760.719269px;}
.y174{bottom:761.570661px;}
.y14{bottom:765.969315px;}
.ye1{bottom:769.981694px;}
.ya4{bottom:770.663727px;}
.y134{bottom:772.080450px;}
.y57{bottom:773.075506px;}
.y98{bottom:774.098221px;}
.y11{bottom:778.719269px;}
.y12{bottom:783.969269px;}
.y133{bottom:784.826700px;}
.ye0{bottom:784.980194px;}
.ya3{bottom:785.663727px;}
.y56{bottom:788.074006px;}
.y97{bottom:789.096721px;}
.y173{bottom:791.567659px;}
.yf{bottom:796.719269px;}
.y132{bottom:797.572950px;}
.ydf{bottom:799.980194px;}
.y10{bottom:801.969269px;}
.y55{bottom:803.072506px;}
.y96{bottom:804.095221px;}
.y172{bottom:806.566159px;}
.y131{bottom:810.319200px;}
.yd{bottom:814.719269px;}
.y54{bottom:818.071006px;}
.y95{bottom:819.093721px;}
.ye{bottom:819.969269px;}
.y171{bottom:821.564659px;}
.y130{bottom:823.065450px;}
.yb{bottom:832.719269px;}
.yde{bottom:832.998194px;}
.y53{bottom:833.069506px;}
.y94{bottom:834.092221px;}
.y12f{bottom:835.811700px;}
.y170{bottom:836.563159px;}
.yc{bottom:837.969269px;}
.ybb{bottom:838.055983px;}
.ydd{bottom:847.996694px;}
.y52{bottom:848.068006px;}
.y12e{bottom:848.557950px;}
.y93{bottom:849.090721px;}
.y9{bottom:850.719269px;}
.y16f{bottom:851.561659px;}
.yba{bottom:853.054483px;}
.ya{bottom:855.969269px;}
.y12d{bottom:861.304200px;}
.ydc{bottom:862.995194px;}
.y51{bottom:863.066506px;}
.y92{bottom:864.089221px;}
.y16e{bottom:866.560159px;}
.yb9{bottom:868.052983px;}
.y7{bottom:868.719269px;}
.y8{bottom:873.969269px;}
.y12c{bottom:874.050450px;}
.ydb{bottom:877.993694px;}
.y50{bottom:878.065006px;}
.y91{bottom:879.087721px;}
.y16d{bottom:881.558659px;}
.yb8{bottom:883.051483px;}
.y12b{bottom:886.796700px;}
.yda{bottom:892.992194px;}
.y4f{bottom:893.063506px;}
.y90{bottom:894.086221px;}
.y16c{bottom:896.557159px;}
.y12a{bottom:899.542950px;}
.y6{bottom:901.713269px;}
.yd9{bottom:907.990694px;}
.y4e{bottom:908.062006px;}
.y8f{bottom:909.084721px;}
.y129{bottom:912.289200px;}
.y16b{bottom:919.049659px;}
.yd8{bottom:922.989194px;}
.y4d{bottom:923.060506px;}
.y128{bottom:925.035450px;}
.y8e{bottom:928.808441px;}
.y16a{bottom:934.048159px;}
.y127{bottom:937.781700px;}
.yd7{bottom:937.987694px;}
.y4c{bottom:938.059006px;}
.y8d{bottom:939.084721px;}
.y5{bottom:946.719269px;}
.y126{bottom:950.527950px;}
.yd6{bottom:952.986194px;}
.y4b{bottom:953.057506px;}
.y8c{bottom:954.096721px;}
.y25{bottom:954.366760px;}
.y169{bottom:956.552659px;}
.y125{bottom:963.274200px;}
.yd5{bottom:967.984694px;}
.y4a{bottom:968.056006px;}
.y8b{bottom:969.095221px;}
.y124{bottom:976.024200px;}
.y168{bottom:979.057159px;}
.yd4{bottom:982.983194px;}
.y49{bottom:983.054506px;}
.y8a{bottom:984.093721px;}
.y167{bottom:994.057159px;}
.yd3{bottom:997.981694px;}
.y48{bottom:998.053006px;}
.y89{bottom:999.092221px;}
.yd2{bottom:1012.983194px;}
.y47{bottom:1013.051506px;}
.y88{bottom:1014.090721px;}
.y166{bottom:1024.057159px;}
.y123{bottom:1025.524200px;}
.yd1{bottom:1027.981694px;}
.y46{bottom:1028.050006px;}
.y87{bottom:1029.089221px;}
.y165{bottom:1039.057159px;}
.yd0{bottom:1042.984694px;}
.y45{bottom:1043.048506px;}
.y86{bottom:1044.087721px;}
.y122{bottom:1055.525700px;}
.ycf{bottom:1057.983194px;}
.y44{bottom:1058.047006px;}
.y85{bottom:1059.086221px;}
.y121{bottom:1070.524200px;}
.yce{bottom:1072.981694px;}
.y43{bottom:1073.045506px;}
.y84{bottom:1074.084721px;}
.y120{bottom:1085.524200px;}
.ycd{bottom:1087.980194px;}
.y42{bottom:1088.044006px;}
.y83{bottom:1089.083221px;}
.y82{bottom:1140.640320px;}
.ya2{bottom:1140.746521px;}
.y41{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.hc{height:23.842749px;}
.h7{height:28.564453px;}
.h2{height:34.523438px;}
.h1c{height:34.713900px;}
.h26{height:35.411133px;}
.hf{height:36.681152px;}
.h8{height:39.550781px;}
.h10{height:41.644789px;}
.h12{height:41.668744px;}
.hd{height:41.668789px;}
.h6{height:43.945312px;}
.h29{height:44.505000px;}
.h9{height:44.511971px;}
.h27{height:45.090000px;}
.h3{height:45.679688px;}
.h28{height:46.080000px;}
.h1a{height:48.339844px;}
.h11{height:48.510668px;}
.he{height:48.534668px;}
.h13{height:49.373529px;}
.h2a{height:50.439000px;}
.ha{height:53.406000px;}
.h15{height:53.446046px;}
.h1d{height:53.548046px;}
.h21{height:53.565863px;}
.h18{height:53.583863px;}
.h23{height:53.595314px;}
.h25{height:53.595406px;}
.h17{height:53.595863px;}
.h24{height:53.601314px;}
.h20{height:53.601680px;}
.h19{height:53.601863px;}
.h1b{height:53.601909px;}
.h22{height:53.607314px;}
.h16{height:53.607863px;}
.h1e{height:53.607909px;}
.h1f{height:53.613680px;}
.h14{height:55.296000px;}
.h4{height:57.099609px;}
.hb{height:79.101562px;}
.h5{height:114.257812px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.228350px;}
.x3{left:61.653603px;}
.x22{left:141.395702px;}
.x5{left:233.858253px;}
.x25{left:251.855870px;}
.x27{left:254.108253px;}
.x28{left:302.498703px;}
.x14{left:316.551155px;}
.x24{left:326.009249px;}
.x6{left:327.076057px;}
.x1b{left:334.715240px;}
.x9{left:341.189850px;}
.xd{left:345.313339px;}
.x18{left:386.592590px;}
.x20{left:389.463730px;}
.x7{left:409.065765px;}
.x1c{left:421.392471px;}
.x15{left:450.264450px;}
.x11{left:476.082321px;}
.xa{left:483.156464px;}
.x19{left:504.522308px;}
.xe{left:512.029633px;}
.x1d{left:532.122437px;}
.x16{left:554.285568px;}
.x4{left:586.814117px;}
.x12{left:598.714188px;}
.xb{left:600.632080px;}
.x21{left:606.973480px;}
.xf{left:652.525223px;}
.x17{left:661.602310px;}
.x1e{left:663.147766px;}
.x1a{left:673.787384px;}
.xc{left:700.947006px;}
.x13{left:727.732819px;}
.x8{left:730.750350px;}
.x10{left:780.005676px;}
.x1f{left:788.035492px;}
.x26{left:797.390808px;}
.x2{left:798.901611px;}
.x1{left:825.001190px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v9{vertical-align:-16.800781pt;}
.v5{vertical-align:-15.866703pt;}
.v7{vertical-align:-9.610602pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.599284pt;}
.v6{vertical-align:15.824036pt;}
.v4{vertical-align:16.714634pt;}
.v3{vertical-align:18.666667pt;}
.ls36{letter-spacing:-0.672000pt;}
.ls50{letter-spacing:-0.560000pt;}
.ls2a{letter-spacing:-0.530400pt;}
.ls3d{letter-spacing:-0.436800pt;}
.ls28{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.405600pt;}
.ls30{letter-spacing:-0.374400pt;}
.ls34{letter-spacing:-0.343200pt;}
.ls1e{letter-spacing:-0.336000pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.312000pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls29{letter-spacing:-0.280800pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls40{letter-spacing:-0.218400pt;}
.ls52{letter-spacing:-0.200000pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.156000pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls31{letter-spacing:-0.124800pt;}
.ls4d{letter-spacing:-0.120000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.093600pt;}
.ls48{letter-spacing:-0.080000pt;}
.ls2e{letter-spacing:-0.062400pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls49{letter-spacing:-0.040000pt;}
.ls27{letter-spacing:-0.031200pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011591pt;}
.ls1{letter-spacing:0.011673pt;}
.ls4{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls6{letter-spacing:0.016027pt;}
.ls3f{letter-spacing:0.031200pt;}
.ls4b{letter-spacing:0.040000pt;}
.ls24{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.062400pt;}
.ls51{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.093600pt;}
.ls17{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112098pt;}
.ls8{letter-spacing:0.124800pt;}
.ls13{letter-spacing:0.126870pt;}
.ls14{letter-spacing:0.127033pt;}
.ls12{letter-spacing:0.140400pt;}
.lsf{letter-spacing:0.141349pt;}
.ls42{letter-spacing:0.141350pt;}
.ls15{letter-spacing:0.141356pt;}
.ls10{letter-spacing:0.141839pt;}
.ls26{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.156000pt;}
.ls4a{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.176022pt;}
.ls45{letter-spacing:0.180000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls46{letter-spacing:0.200000pt;}
.ls16{letter-spacing:0.216000pt;}
.lsd{letter-spacing:0.218400pt;}
.ls44{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.258179pt;}
.ls1a{letter-spacing:0.261305pt;}
.ls21{letter-spacing:0.288000pt;}
.ls47{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls3e{letter-spacing:0.343200pt;}
.ls3b{letter-spacing:0.353590pt;}
.ls3c{letter-spacing:0.374400pt;}
.ls19{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.432000pt;}
.ls39{letter-spacing:0.436800pt;}
.ls33{letter-spacing:0.468000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.528000pt;}
.ls4e{letter-spacing:0.560000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls43{letter-spacing:0.624000pt;}
.ls38{letter-spacing:0.672000pt;}
.ls32{letter-spacing:0.720000pt;}
.ls41{letter-spacing:1.536000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws53{word-spacing:-12.432000pt;}
.ws5b{word-spacing:-12.320000pt;}
.ws31{word-spacing:-12.085333pt;}
.ws4f{word-spacing:-11.424000pt;}
.ws12{word-spacing:-11.136000pt;}
.ws47{word-spacing:-11.112000pt;}
.ws1b{word-spacing:-11.088000pt;}
.ws11{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws35{word-spacing:-10.896000pt;}
.ws58{word-spacing:-10.800000pt;}
.ws3a{word-spacing:-10.656000pt;}
.ws26{word-spacing:-10.464000pt;}
.ws39{word-spacing:-10.416000pt;}
.wsc{word-spacing:-10.128000pt;}
.ws5e{word-spacing:-9.360000pt;}
.ws5c{word-spacing:-9.260000pt;}
.ws5f{word-spacing:-9.200000pt;}
.ws60{word-spacing:-9.080000pt;}
.ws5d{word-spacing:-8.600000pt;}
.wsb{word-spacing:-8.533333pt;}
.ws37{word-spacing:-7.550400pt;}
.ws42{word-spacing:-7.519200pt;}
.ws48{word-spacing:-7.425600pt;}
.ws49{word-spacing:-7.300800pt;}
.ws10{word-spacing:-7.238400pt;}
.ws55{word-spacing:-7.207200pt;}
.ws27{word-spacing:-7.176000pt;}
.wsd{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4a{word-spacing:-7.113600pt;}
.wse{word-spacing:-7.082400pt;}
.ws24{word-spacing:-7.051200pt;}
.ws33{word-spacing:-7.020000pt;}
.wsf{word-spacing:-6.988800pt;}
.ws36{word-spacing:-6.957600pt;}
.ws3b{word-spacing:-6.926400pt;}
.ws4b{word-spacing:-6.864000pt;}
.ws25{word-spacing:-6.801600pt;}
.ws32{word-spacing:-6.770400pt;}
.ws38{word-spacing:-6.739200pt;}
.ws34{word-spacing:-6.708000pt;}
.ws3c{word-spacing:-6.676800pt;}
.ws46{word-spacing:-6.645600pt;}
.ws3{word-spacing:-6.552000pt;}
.ws5{word-spacing:-5.893333pt;}
.ws6e{word-spacing:-5.480000pt;}
.ws71{word-spacing:-5.400000pt;}
.ws6b{word-spacing:-5.360000pt;}
.ws73{word-spacing:-5.080000pt;}
.ws74{word-spacing:-4.920000pt;}
.ws4c{word-spacing:-4.896000pt;}
.ws2a{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws18{word-spacing:-1.056000pt;}
.ws4e{word-spacing:-1.008000pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.920000pt;}
.ws2d{word-spacing:-0.912000pt;}
.ws62{word-spacing:-0.880000pt;}
.ws23{word-spacing:-0.864000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.720000pt;}
.ws64{word-spacing:-0.680000pt;}
.ws1d{word-spacing:-0.672000pt;}
.ws67{word-spacing:-0.600000pt;}
.ws13{word-spacing:-0.576000pt;}
.ws45{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.432000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.343200pt;}
.ws51{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.240000pt;}
.ws61{word-spacing:-0.234667pt;}
.ws68{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws65{word-spacing:-0.160000pt;}
.ws70{word-spacing:-0.080000pt;}
.ws6{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.040000pt;}
.ws75{word-spacing:0.048000pt;}
.ws66{word-spacing:0.080000pt;}
.ws19{word-spacing:0.093600pt;}
.ws6a{word-spacing:0.160000pt;}
.ws59{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.240000pt;}
.ws52{word-spacing:0.288000pt;}
.ws40{word-spacing:0.336000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws41{word-spacing:0.432000pt;}
.ws7c{word-spacing:0.480000pt;}
.ws16{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.624000pt;}
.ws44{word-spacing:0.672000pt;}
.ws29{word-spacing:0.768000pt;}
.ws21{word-spacing:0.816000pt;}
.ws57{word-spacing:0.864000pt;}
.ws72{word-spacing:0.880000pt;}
.ws6f{word-spacing:0.920000pt;}
.ws3e{word-spacing:0.960000pt;}
.ws56{word-spacing:1.008000pt;}
.ws1a{word-spacing:1.056000pt;}
.ws14{word-spacing:1.104000pt;}
.ws22{word-spacing:1.200000pt;}
.ws2b{word-spacing:1.248000pt;}
.ws28{word-spacing:1.296000pt;}
.ws6c{word-spacing:1.400000pt;}
.ws5a{word-spacing:1.536000pt;}
.ws54{word-spacing:1.680000pt;}
.ws43{word-spacing:1.776000pt;}
.ws7a{word-spacing:1.824000pt;}
.ws3f{word-spacing:1.872000pt;}
.ws76{word-spacing:2.688000pt;}
.ws77{word-spacing:2.784000pt;}
.ws7b{word-spacing:5.040000pt;}
.ws9{word-spacing:5.304000pt;}
.ws7d{word-spacing:5.568000pt;}
.ws78{word-spacing:5.760000pt;}
.ws79{word-spacing:6.000000pt;}
.ws8{word-spacing:11.560000pt;}
.wsa{word-spacing:12.738667pt;}
.ws30{word-spacing:13.584000pt;}
._2e{margin-left:-18.624006pt;}
._31{margin-left:-14.226695pt;}
._32{margin-left:-12.798415pt;}
._2c{margin-left:-11.886416pt;}
._19{margin-left:-10.555195pt;}
._2d{margin-left:-9.006413pt;}
._30{margin-left:-7.772267pt;}
._2f{margin-left:-6.455160pt;}
._7{margin-left:-5.313067pt;}
._4{margin-left:-4.212267pt;}
._2{margin-left:-3.131733pt;}
._0{margin-left:-1.668267pt;}
._6{width:1.471467pt;}
._d{width:3.037333pt;}
._c{width:4.148819pt;}
._a{width:5.108845pt;}
._b{width:6.174467pt;}
._11{width:7.244267pt;}
._e{width:8.147079pt;}
._13{width:10.107152pt;}
._12{width:11.593075pt;}
._5{width:13.363181pt;}
._f{width:15.018933pt;}
._10{width:16.360800pt;}
._14{width:17.317334pt;}
._9{width:22.775622pt;}
._8{width:23.881444pt;}
._16{width:25.269800pt;}
._15{width:26.529222pt;}
._3{width:35.651385pt;}
._20{width:45.418123pt;}
._1a{width:123.907736pt;}
._21{width:142.699202pt;}
._1d{width:146.798936pt;}
._1e{width:155.652262pt;}
._26{width:160.907729pt;}
._25{width:190.700795pt;}
._24{width:193.043729pt;}
._1b{width:194.371195pt;}
._27{width:198.196262pt;}
._18{width:221.947195pt;}
._1f{width:226.219195pt;}
._28{width:232.555195pt;}
._2b{width:234.043195pt;}
._29{width:241.295990pt;}
._22{width:254.064000pt;}
._23{width:255.168000pt;}
._2a{width:263.328000pt;}
._1c{width:265.728000pt;}
._17{width:268.080000pt;}
._1{width:283.609600pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:2.843733pt;}
.y40{bottom:2.843867pt;}
.ybd{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y3f{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya1{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y3e{bottom:60.477867pt;}
.yc9{bottom:70.558802pt;}
.yf6{bottom:73.216533pt;}
.y3d{bottom:73.811200pt;}
.y9f{bottom:74.015198pt;}
.ybc{bottom:74.121867pt;}
.y11c{bottom:74.552135pt;}
.y81{bottom:79.158269pt;}
.yc8{bottom:83.890802pt;}
.yf5{bottom:86.548533pt;}
.y3c{bottom:87.144533pt;}
.y11b{bottom:87.886802pt;}
.y80{bottom:92.490269pt;}
.y164{bottom:92.931733pt;}
.yc7{bottom:97.222802pt;}
.y3b{bottom:100.477867pt;}
.y11a{bottom:101.218802pt;}
.y7f{bottom:105.822269pt;}
.y163{bottom:106.263733pt;}
.yc6{bottom:110.554802pt;}
.y3a{bottom:113.811200pt;}
.y119{bottom:114.550802pt;}
.y7e{bottom:119.154269pt;}
.y162{bottom:119.595733pt;}
.yc5{bottom:123.886802pt;}
.y39{bottom:127.144533pt;}
.y118{bottom:127.884135pt;}
.y7d{bottom:132.486269pt;}
.y161{bottom:132.927733pt;}
.yc4{bottom:137.218802pt;}
.y38{bottom:140.477867pt;}
.y7c{bottom:145.818269pt;}
.y160{bottom:146.259733pt;}
.yc3{bottom:150.552135pt;}
.y37{bottom:153.811200pt;}
.y117{bottom:157.229468pt;}
.y7b{bottom:159.152935pt;}
.y15f{bottom:159.591733pt;}
.yc2{bottom:163.885468pt;}
.y36{bottom:167.144533pt;}
.y116{bottom:170.561468pt;}
.y7a{bottom:172.484935pt;}
.y15e{bottom:172.923733pt;}
.yc1{bottom:177.221468pt;}
.y35{bottom:180.477867pt;}
.y115{bottom:183.893468pt;}
.y79{bottom:185.816935pt;}
.y15d{bottom:186.255733pt;}
.yc0{bottom:190.553468pt;}
.y34{bottom:193.811200pt;}
.y114{bottom:197.225468pt;}
.y78{bottom:199.150269pt;}
.y15c{bottom:199.587733pt;}
.ybf{bottom:203.885468pt;}
.y33{bottom:207.144533pt;}
.y113{bottom:210.557468pt;}
.y15b{bottom:212.919733pt;}
.ybe{bottom:217.217468pt;}
.y32{bottom:220.477867pt;}
.y112{bottom:223.889468pt;}
.y15a{bottom:226.251733pt;}
.y77{bottom:228.486269pt;}
.y31{bottom:233.811200pt;}
.y111{bottom:237.221468pt;}
.y159{bottom:239.583733pt;}
.y76{bottom:241.818269pt;}
.y30{bottom:247.144533pt;}
.y110{bottom:250.553468pt;}
.y158{bottom:252.915733pt;}
.y75{bottom:255.150269pt;}
.y2f{bottom:260.477867pt;}
.y10f{bottom:263.885468pt;}
.y157{bottom:266.247733pt;}
.y74{bottom:268.483602pt;}
.y2e{bottom:273.811200pt;}
.ycc{bottom:276.030804pt;}
.y10e{bottom:277.218802pt;}
.y156{bottom:279.579733pt;}
.y2d{bottom:287.144533pt;}
.ycb{bottom:289.362804pt;}
.y10d{bottom:290.554802pt;}
.y155{bottom:292.911733pt;}
.y73{bottom:297.819602pt;}
.y2c{bottom:300.483200pt;}
.yca{bottom:302.694804pt;}
.y10c{bottom:303.886802pt;}
.y154{bottom:306.243733pt;}
.y72{bottom:311.151602pt;}
.y2b{bottom:313.811200pt;}
.y10b{bottom:317.218802pt;}
.y153{bottom:319.577067pt;}
.y71{bottom:324.484935pt;}
.y2a{bottom:327.144533pt;}
.y10a{bottom:330.554781pt;}
.y70{bottom:337.823602pt;}
.y29{bottom:340.477867pt;}
.y109{bottom:343.886781pt;}
.y152{bottom:346.393733pt;}
.y6f{bottom:351.155602pt;}
.y28{bottom:353.811200pt;}
.y108{bottom:357.218781pt;}
.y151{bottom:357.723733pt;}
.y6e{bottom:364.487602pt;}
.y27{bottom:367.144533pt;}
.y150{bottom:369.053733pt;}
.y107{bottom:370.552115pt;}
.y6d{bottom:377.819602pt;}
.y14f{bottom:380.383733pt;}
.y106{bottom:383.886781pt;}
.y26{bottom:384.439209pt;}
.y6c{bottom:391.151602pt;}
.y14e{bottom:391.713733pt;}
.y105{bottom:397.218781pt;}
.y14d{bottom:403.043733pt;}
.y6b{bottom:404.484935pt;}
.y104{bottom:410.552115pt;}
.y14c{bottom:414.373733pt;}
.y6a{bottom:417.819602pt;}
.y103{bottom:423.885448pt;}
.y14b{bottom:425.703733pt;}
.y24{bottom:426.194946pt;}
.yf4{bottom:431.096132pt;}
.y69{bottom:431.151602pt;}
.yb7{bottom:431.707716pt;}
.y14a{bottom:437.033733pt;}
.y102{bottom:437.218781pt;}
.yf3{bottom:444.428132pt;}
.y68{bottom:444.487602pt;}
.yb6{bottom:445.039716pt;}
.y149{bottom:448.363733pt;}
.y101{bottom:450.552115pt;}
.y23{bottom:457.538946pt;}
.yf2{bottom:457.761465pt;}
.y67{bottom:457.819602pt;}
.yb5{bottom:458.371716pt;}
.y148{bottom:459.693733pt;}
.y100{bottom:463.885448pt;}
.y147{bottom:471.023733pt;}
.yf1{bottom:471.096132pt;}
.y66{bottom:471.151602pt;}
.yb4{bottom:471.703716pt;}
.y22{bottom:472.202946pt;}
.yff{bottom:477.218781pt;}
.y146{bottom:482.353733pt;}
.yf0{bottom:484.428132pt;}
.y65{bottom:484.484935pt;}
.yb3{bottom:485.035716pt;}
.y21{bottom:486.866946pt;}
.yfe{bottom:490.554781pt;}
.y145{bottom:493.683733pt;}
.yef{bottom:497.761465pt;}
.y64{bottom:497.818269pt;}
.yb2{bottom:498.369050pt;}
.y20{bottom:501.530946pt;}
.yfd{bottom:503.886781pt;}
.y144{bottom:505.013733pt;}
.yee{bottom:511.094799pt;}
.y63{bottom:511.151602pt;}
.yb1{bottom:511.707716pt;}
.y1f{bottom:516.216280pt;}
.y143{bottom:516.343733pt;}
.yfc{bottom:517.218781pt;}
.yed{bottom:524.428132pt;}
.y62{bottom:524.487602pt;}
.yb0{bottom:525.039716pt;}
.y142{bottom:527.673733pt;}
.yfb{bottom:530.554781pt;}
.y1e{bottom:530.880280pt;}
.yec{bottom:537.761465pt;}
.y61{bottom:537.819602pt;}
.yaf{bottom:538.371716pt;}
.y141{bottom:539.003733pt;}
.yfa{bottom:543.886781pt;}
.y1d{bottom:545.544280pt;}
.y140{bottom:550.333733pt;}
.yeb{bottom:551.094799pt;}
.y60{bottom:551.151602pt;}
.yae{bottom:551.703716pt;}
.yf9{bottom:557.218781pt;}
.y1c{bottom:560.208280pt;}
.y13f{bottom:561.663733pt;}
.yea{bottom:564.437465pt;}
.y5f{bottom:564.484935pt;}
.yad{bottom:565.035716pt;}
.yf8{bottom:570.552115pt;}
.y13e{bottom:572.993733pt;}
.y1b{bottom:574.872280pt;}
.ye9{bottom:577.769465pt;}
.y5e{bottom:577.818269pt;}
.yac{bottom:578.369050pt;}
.yf7{bottom:583.884115pt;}
.y13d{bottom:584.323733pt;}
.y1a{bottom:589.536280pt;}
.ye8{bottom:591.101465pt;}
.y5d{bottom:591.151602pt;}
.yab{bottom:591.702383pt;}
.y13c{bottom:595.653733pt;}
.y19{bottom:604.200280pt;}
.ye7{bottom:604.433465pt;}
.y5c{bottom:604.484935pt;}
.yaa{bottom:605.035716pt;}
.y13b{bottom:606.983733pt;}
.y9e{bottom:608.078015pt;}
.ye6{bottom:617.765465pt;}
.y5b{bottom:617.854228pt;}
.y13a{bottom:618.313733pt;}
.ya9{bottom:618.370383pt;}
.y18{bottom:618.864280pt;}
.y9d{bottom:621.410015pt;}
.y139{bottom:629.643733pt;}
.y11f{bottom:629.790793pt;}
.ye5{bottom:631.097465pt;}
.y5a{bottom:631.186228pt;}
.ya8{bottom:631.702383pt;}
.y17{bottom:633.528280pt;}
.y9c{bottom:634.742015pt;}
.y138{bottom:640.973733pt;}
.y11e{bottom:643.122793pt;}
.ye4{bottom:644.429465pt;}
.ya7{bottom:645.038424pt;}
.y9b{bottom:648.075349pt;}
.y137{bottom:652.303733pt;}
.y11d{bottom:656.454793pt;}
.ye3{bottom:657.761465pt;}
.ya6{bottom:658.370424pt;}
.y15{bottom:660.194946pt;}
.y59{bottom:660.514228pt;}
.y9a{bottom:661.408682pt;}
.y136{bottom:663.633733pt;}
.y16{bottom:664.861613pt;}
.ye2{bottom:671.096173pt;}
.ya5{bottom:671.702424pt;}
.y58{bottom:673.846228pt;}
.y99{bottom:674.755308pt;}
.y135{bottom:674.963733pt;}
.y13{bottom:676.194906pt;}
.y174{bottom:676.951699pt;}
.y14{bottom:680.861613pt;}
.ye1{bottom:684.428173pt;}
.ya4{bottom:685.034424pt;}
.y134{bottom:686.293733pt;}
.y57{bottom:687.178228pt;}
.y98{bottom:688.087308pt;}
.y11{bottom:692.194906pt;}
.y12{bottom:696.861572pt;}
.y133{bottom:697.623733pt;}
.ye0{bottom:697.760173pt;}
.ya3{bottom:698.367757pt;}
.y56{bottom:700.510228pt;}
.y97{bottom:701.419308pt;}
.y173{bottom:703.615697pt;}
.yf{bottom:708.194906pt;}
.y132{bottom:708.953733pt;}
.ydf{bottom:711.093506pt;}
.y10{bottom:712.861572pt;}
.y55{bottom:713.842228pt;}
.y96{bottom:714.751308pt;}
.y172{bottom:716.947697pt;}
.y131{bottom:720.283733pt;}
.yd{bottom:724.194906pt;}
.y54{bottom:727.174228pt;}
.y95{bottom:728.083308pt;}
.ye{bottom:728.861572pt;}
.y171{bottom:730.279697pt;}
.y130{bottom:731.613733pt;}
.yb{bottom:740.194906pt;}
.yde{bottom:740.442839pt;}
.y53{bottom:740.506228pt;}
.y94{bottom:741.415308pt;}
.y12f{bottom:742.943733pt;}
.y170{bottom:743.611697pt;}
.yc{bottom:744.861572pt;}
.ybb{bottom:744.938652pt;}
.ydd{bottom:753.774839pt;}
.y52{bottom:753.838228pt;}
.y12e{bottom:754.273733pt;}
.y93{bottom:754.747308pt;}
.y9{bottom:756.194906pt;}
.y16f{bottom:756.943697pt;}
.yba{bottom:758.270652pt;}
.ya{bottom:760.861572pt;}
.y12d{bottom:765.603733pt;}
.ydc{bottom:767.106839pt;}
.y51{bottom:767.170228pt;}
.y92{bottom:768.079308pt;}
.y16e{bottom:770.275697pt;}
.yb9{bottom:771.602652pt;}
.y7{bottom:772.194906pt;}
.y8{bottom:776.861572pt;}
.y12c{bottom:776.933733pt;}
.ydb{bottom:780.438839pt;}
.y50{bottom:780.502228pt;}
.y91{bottom:781.411308pt;}
.y16d{bottom:783.607697pt;}
.yb8{bottom:784.934652pt;}
.y12b{bottom:788.263733pt;}
.yda{bottom:793.770839pt;}
.y4f{bottom:793.834228pt;}
.y90{bottom:794.743308pt;}
.y16c{bottom:796.939697pt;}
.y12a{bottom:799.593733pt;}
.y6{bottom:801.522906pt;}
.yd9{bottom:807.102839pt;}
.y4e{bottom:807.166228pt;}
.y8f{bottom:808.075308pt;}
.y129{bottom:810.923733pt;}
.y16b{bottom:816.933031pt;}
.yd8{bottom:820.434839pt;}
.y4d{bottom:820.498228pt;}
.y128{bottom:822.253733pt;}
.y8e{bottom:825.607503pt;}
.y16a{bottom:830.265031pt;}
.y127{bottom:833.583733pt;}
.yd7{bottom:833.766839pt;}
.y4c{bottom:833.830228pt;}
.y8d{bottom:834.741975pt;}
.y5{bottom:841.528239pt;}
.y126{bottom:844.913733pt;}
.yd6{bottom:847.098839pt;}
.y4b{bottom:847.162228pt;}
.y8c{bottom:848.085975pt;}
.y25{bottom:848.326009pt;}
.y169{bottom:850.269031pt;}
.y125{bottom:856.243733pt;}
.yd5{bottom:860.430839pt;}
.y4a{bottom:860.494228pt;}
.y8b{bottom:861.417975pt;}
.y124{bottom:867.577067pt;}
.y168{bottom:870.273031pt;}
.yd4{bottom:873.762839pt;}
.y49{bottom:873.826228pt;}
.y8a{bottom:874.749975pt;}
.y167{bottom:883.606364pt;}
.yd3{bottom:887.094839pt;}
.y48{bottom:887.158228pt;}
.y89{bottom:888.081975pt;}
.yd2{bottom:900.429506pt;}
.y47{bottom:900.490228pt;}
.y88{bottom:901.413975pt;}
.y166{bottom:910.273031pt;}
.y123{bottom:911.577067pt;}
.yd1{bottom:913.761506pt;}
.y46{bottom:913.822228pt;}
.y87{bottom:914.745975pt;}
.y165{bottom:923.606364pt;}
.yd0{bottom:927.097506pt;}
.y45{bottom:927.154228pt;}
.y86{bottom:928.077975pt;}
.y122{bottom:938.245067pt;}
.ycf{bottom:940.429506pt;}
.y44{bottom:940.486228pt;}
.y85{bottom:941.409975pt;}
.y121{bottom:951.577067pt;}
.yce{bottom:953.761506pt;}
.y43{bottom:953.818228pt;}
.y84{bottom:954.741975pt;}
.y120{bottom:964.910400pt;}
.ycd{bottom:967.093506pt;}
.y42{bottom:967.150228pt;}
.y83{bottom:968.073975pt;}
.y82{bottom:1013.902507pt;}
.ya2{bottom:1013.996908pt;}
.y41{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.hc{height:21.193555pt;}
.h7{height:25.390625pt;}
.h2{height:30.687500pt;}
.h1c{height:30.856800pt;}
.h26{height:31.476562pt;}
.hf{height:32.605469pt;}
.h8{height:35.156250pt;}
.h10{height:37.017591pt;}
.h12{height:37.038883pt;}
.hd{height:37.038924pt;}
.h6{height:39.062500pt;}
.h29{height:39.560000pt;}
.h9{height:39.566197pt;}
.h27{height:40.080000pt;}
.h3{height:40.604167pt;}
.h28{height:40.960000pt;}
.h1a{height:42.968750pt;}
.h11{height:43.120594pt;}
.he{height:43.141927pt;}
.h13{height:43.887581pt;}
.h2a{height:44.834667pt;}
.ha{height:47.472000pt;}
.h15{height:47.507597pt;}
.h1d{height:47.598264pt;}
.h21{height:47.614101pt;}
.h18{height:47.630101pt;}
.h23{height:47.640279pt;}
.h25{height:47.640361pt;}
.h17{height:47.640767pt;}
.h24{height:47.645613pt;}
.h20{height:47.645938pt;}
.h19{height:47.646101pt;}
.h1b{height:47.646141pt;}
.h22{height:47.650946pt;}
.h16{height:47.651434pt;}
.h1e{height:47.651475pt;}
.h1f{height:47.656605pt;}
.h14{height:49.152000pt;}
.h4{height:50.755208pt;}
.hb{height:70.312500pt;}
.h5{height:101.562500pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.425200pt;}
.x3{left:54.803202pt;}
.x22{left:125.685069pt;}
.x5{left:207.874003pt;}
.x25{left:223.871884pt;}
.x27{left:225.874003pt;}
.x28{left:268.887736pt;}
.x14{left:281.378805pt;}
.x24{left:289.785999pt;}
.x6{left:290.734273pt;}
.x1b{left:297.524658pt;}
.x9{left:303.279867pt;}
.xd{left:306.945190pt;}
.x18{left:343.637858pt;}
.x20{left:346.189982pt;}
.x7{left:363.614014pt;}
.x1c{left:374.571086pt;}
.x15{left:400.235067pt;}
.x11{left:423.184285pt;}
.xa{left:429.472412pt;}
.x19{left:448.464274pt;}
.xe{left:455.137451pt;}
.x1d{left:472.997721pt;}
.x16{left:492.698283pt;}
.x4{left:521.612549pt;}
.x12{left:532.190389pt;}
.xb{left:533.895182pt;}
.x21{left:539.531982pt;}
.xf{left:580.022420pt;}
.x17{left:588.090942pt;}
.x1e{left:589.464681pt;}
.x1a{left:598.922119pt;}
.xc{left:623.064006pt;}
.x13{left:646.873617pt;}
.x8{left:649.555867pt;}
.x10{left:693.338379pt;}
.x1f{left:700.475993pt;}
.x26{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1{left:733.334391pt;}
}

