
    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_7b3e1b2f52275f10fe3d26f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000048;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_cdf65c12264453ccf93198f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_ddb6429d9a609e56e3dfb0da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_77988b01deed490848444681.woff')format("woff");}.ff4{font-family:ff4;line-height:1.110000;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_6774933190fa4a3159e4e85f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_cdf65c12264453ccf93198f3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.110000;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_31e1318e54a0c81fd040b2d3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.060000;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_6774933190fa4a3159e4e85f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000048;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_cdf65c12264453ccf93198f3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.110000;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v1{vertical-align:21.780000px;}
.ls1{letter-spacing:-0.792000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.909000px;}
.ls4{letter-spacing:4.812600px;}
.ls3{letter-spacing:7.375800px;}
.ls5{letter-spacing:7.978800px;}
.ls7{letter-spacing:8.333400px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws12{word-spacing:-15.000000px;}
.wsb6{word-spacing:-12.750000px;}
.ws13{word-spacing:-11.550000px;}
.ws66{word-spacing:-9.570000px;}
.ws78{word-spacing:-8.700000px;}
.ws2{word-spacing:-7.395000px;}
.wsce{word-spacing:-3.894000px;}
.ws95{word-spacing:-3.300000px;}
.wsb2{word-spacing:-3.234000px;}
.ws48{word-spacing:-3.168000px;}
.ws8d{word-spacing:-3.102000px;}
.ws21{word-spacing:-3.036000px;}
.wsdc{word-spacing:-2.970000px;}
.ws2c{word-spacing:-2.904000px;}
.ws5f{word-spacing:-2.838000px;}
.wsc8{word-spacing:-2.820000px;}
.wsb7{word-spacing:-2.772000px;}
.ws6{word-spacing:-2.706000px;}
.ws72{word-spacing:-2.640000px;}
.ws4d{word-spacing:-2.574000px;}
.wsc6{word-spacing:-2.508000px;}
.ws5b{word-spacing:-2.442000px;}
.ws93{word-spacing:-2.376000px;}
.ws4c{word-spacing:-2.310000px;}
.ws6e{word-spacing:-2.244000px;}
.ws7c{word-spacing:-2.220000px;}
.wsbd{word-spacing:-2.178000px;}
.ws43{word-spacing:-2.112000px;}
.ws7b{word-spacing:-2.100000px;}
.ws3a{word-spacing:-2.046000px;}
.wsbc{word-spacing:-1.980000px;}
.ws36{word-spacing:-1.848000px;}
.wsd2{word-spacing:-1.836000px;}
.wsad{word-spacing:-1.800000px;}
.ws91{word-spacing:-1.782000px;}
.ws28{word-spacing:-1.716000px;}
.wsa6{word-spacing:-1.650000px;}
.wsbe{word-spacing:-1.584000px;}
.wsc0{word-spacing:-1.530000px;}
.ws5e{word-spacing:-1.518000px;}
.wsae{word-spacing:-1.500000px;}
.wsa4{word-spacing:-1.452000px;}
.ws9c{word-spacing:-1.428000px;}
.ws1e{word-spacing:-1.386000px;}
.ws77{word-spacing:-1.326000px;}
.ws56{word-spacing:-1.320000px;}
.wsa1{word-spacing:-1.254000px;}
.ws4b{word-spacing:-1.188000px;}
.ws50{word-spacing:-1.122000px;}
.ws88{word-spacing:-1.071000px;}
.ws81{word-spacing:-1.056000px;}
.ws71{word-spacing:-0.990000px;}
.ws8b{word-spacing:-0.969000px;}
.wsa{word-spacing:-0.924000px;}
.ws96{word-spacing:-0.858000px;}
.ws76{word-spacing:-0.816000px;}
.wsf{word-spacing:-0.792000px;}
.wsb0{word-spacing:-0.780000px;}
.wsa3{word-spacing:-0.726000px;}
.wsbf{word-spacing:-0.663000px;}
.wscf{word-spacing:-0.660000px;}
.wsca{word-spacing:-0.612000px;}
.ws42{word-spacing:-0.594000px;}
.ws40{word-spacing:-0.528000px;}
.wsa0{word-spacing:-0.462000px;}
.wsc2{word-spacing:-0.459000px;}
.ws44{word-spacing:-0.396000px;}
.ws9{word-spacing:-0.330000px;}
.ws9d{word-spacing:-0.306000px;}
.ws4f{word-spacing:-0.264000px;}
.ws6c{word-spacing:-0.198000px;}
.ws7e{word-spacing:-0.180000px;}
.ws89{word-spacing:-0.153000px;}
.ws8e{word-spacing:-0.132000px;}
.ws8c{word-spacing:-0.102000px;}
.ws84{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws2b{word-spacing:0.066000px;}
.ws7f{word-spacing:0.120000px;}
.ws6f{word-spacing:0.132000px;}
.ws27{word-spacing:0.198000px;}
.ws92{word-spacing:0.264000px;}
.ws9a{word-spacing:0.357000px;}
.ws10{word-spacing:0.396000px;}
.wsd4{word-spacing:0.459000px;}
.ws2f{word-spacing:0.462000px;}
.ws9f{word-spacing:0.528000px;}
.ws7d{word-spacing:0.540000px;}
.ws18{word-spacing:0.594000px;}
.wscb{word-spacing:0.600000px;}
.wsd3{word-spacing:0.612000px;}
.ws90{word-spacing:0.660000px;}
.wsa2{word-spacing:0.726000px;}
.wsa9{word-spacing:0.780000px;}
.ws5{word-spacing:0.792000px;}
.ws6b{word-spacing:0.858000px;}
.ws8a{word-spacing:0.918000px;}
.ws94{word-spacing:0.924000px;}
.ws31{word-spacing:0.990000px;}
.wsda{word-spacing:1.071000px;}
.wsa8{word-spacing:1.080000px;}
.ws8{word-spacing:1.122000px;}
.ws83{word-spacing:1.188000px;}
.ws5c{word-spacing:1.254000px;}
.wsc9{word-spacing:1.260000px;}
.wsb{word-spacing:1.320000px;}
.ws67{word-spacing:1.386000px;}
.ws39{word-spacing:1.452000px;}
.wsd8{word-spacing:1.479000px;}
.ws14{word-spacing:1.518000px;}
.ws59{word-spacing:1.584000px;}
.wsac{word-spacing:1.620000px;}
.ws11{word-spacing:1.650000px;}
.ws3c{word-spacing:1.716000px;}
.ws98{word-spacing:1.734000px;}
.ws38{word-spacing:1.740000px;}
.ws58{word-spacing:1.782000px;}
.ws1a{word-spacing:1.848000px;}
.ws74{word-spacing:1.887000px;}
.wsb9{word-spacing:1.914000px;}
.wsab{word-spacing:1.920000px;}
.ws32{word-spacing:1.980000px;}
.ws34{word-spacing:2.040000px;}
.ws17{word-spacing:2.046000px;}
.ws23{word-spacing:2.112000px;}
.ws87{word-spacing:2.178000px;}
.wsc3{word-spacing:2.244000px;}
.ws62{word-spacing:2.310000px;}
.ws9e{word-spacing:2.346000px;}
.ws57{word-spacing:2.376000px;}
.ws35{word-spacing:2.400000px;}
.ws65{word-spacing:2.442000px;}
.ws1f{word-spacing:2.508000px;}
.ws1c{word-spacing:2.574000px;}
.ws79{word-spacing:2.580000px;}
.ws52{word-spacing:2.640000px;}
.ws19{word-spacing:2.706000px;}
.ws75{word-spacing:2.754000px;}
.wsd{word-spacing:2.772000px;}
.ws5a{word-spacing:2.838000px;}
.ws97{word-spacing:2.904000px;}
.ws1d{word-spacing:2.970000px;}
.ws41{word-spacing:3.036000px;}
.ws25{word-spacing:3.102000px;}
.ws68{word-spacing:3.168000px;}
.ws22{word-spacing:3.234000px;}
.ws47{word-spacing:3.240000px;}
.ws4a{word-spacing:3.300000px;}
.wsc1{word-spacing:3.315000px;}
.ws33{word-spacing:3.360000px;}
.ws7{word-spacing:3.366000px;}
.ws82{word-spacing:3.432000px;}
.ws15{word-spacing:3.498000px;}
.ws73{word-spacing:3.519000px;}
.ws61{word-spacing:3.564000px;}
.ws2d{word-spacing:3.630000px;}
.ws3e{word-spacing:3.696000px;}
.ws60{word-spacing:3.828000px;}
.ws30{word-spacing:3.894000px;}
.wsd9{word-spacing:3.927000px;}
.ws80{word-spacing:3.960000px;}
.ws99{word-spacing:3.978000px;}
.wse{word-spacing:4.026000px;}
.wsa7{word-spacing:4.080000px;}
.wsde{word-spacing:4.158000px;}
.ws4e{word-spacing:4.224000px;}
.wsaf{word-spacing:4.260000px;}
.ws64{word-spacing:4.290000px;}
.ws53{word-spacing:4.356000px;}
.wsc{word-spacing:4.422000px;}
.ws63{word-spacing:4.488000px;}
.ws9b{word-spacing:4.539000px;}
.ws26{word-spacing:4.554000px;}
.ws24{word-spacing:4.620000px;}
.ws5d{word-spacing:4.752000px;}
.ws70{word-spacing:4.818000px;}
.wsb8{word-spacing:4.950000px;}
.ws86{word-spacing:5.016000px;}
.ws46{word-spacing:5.040000px;}
.wsd5{word-spacing:5.148000px;}
.ws29{word-spacing:5.214000px;}
.wsbb{word-spacing:5.280000px;}
.ws85{word-spacing:5.412000px;}
.ws45{word-spacing:5.520000px;}
.ws55{word-spacing:5.544000px;}
.wsc7{word-spacing:5.610000px;}
.ws2a{word-spacing:5.742000px;}
.ws49{word-spacing:5.808000px;}
.ws7a{word-spacing:5.940000px;}
.wsdf{word-spacing:6.006000px;}
.ws4{word-spacing:6.138000px;}
.wsb1{word-spacing:6.204000px;}
.wsdb{word-spacing:6.402000px;}
.ws20{word-spacing:6.534000px;}
.ws37{word-spacing:6.600000px;}
.ws8f{word-spacing:6.666000px;}
.ws16{word-spacing:6.732000px;}
.ws3f{word-spacing:6.798000px;}
.wsd1{word-spacing:6.834000px;}
.wsb5{word-spacing:6.996000px;}
.wsaa{word-spacing:7.020000px;}
.ws2e{word-spacing:7.194000px;}
.ws3b{word-spacing:7.260000px;}
.ws69{word-spacing:7.392000px;}
.wsa5{word-spacing:7.590000px;}
.ws51{word-spacing:7.788000px;}
.ws6d{word-spacing:7.854000px;}
.ws1b{word-spacing:7.920000px;}
.wscc{word-spacing:7.986000px;}
.wscd{word-spacing:8.052000px;}
.wsba{word-spacing:8.118000px;}
.wsd6{word-spacing:8.184000px;}
.wse0{word-spacing:8.316000px;}
.wsd0{word-spacing:8.580000px;}
.wsdd{word-spacing:8.712000px;}
.ws6a{word-spacing:8.910000px;}
.ws3d{word-spacing:8.976000px;}
.ws54{word-spacing:9.108000px;}
.wsc5{word-spacing:9.240000px;}
.wsc4{word-spacing:9.438000px;}
.wsd7{word-spacing:9.768000px;}
.wsb3{word-spacing:12.408000px;}
.wsb4{word-spacing:12.474000px;}
._a{margin-left:-11.182200px;}
._8{margin-left:-9.055800px;}
._6{margin-left:-7.801200px;}
._9{margin-left:-6.791400px;}
._4{margin-left:-5.565000px;}
._0{margin-left:-3.900000px;}
._3{margin-left:-2.626200px;}
._1{margin-left:-1.307400px;}
._2{width:1.008000px;}
._7{width:2.206200px;}
._5{width:19.008000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:29.580000px;}
.fs7{font-size:34.800000px;}
.fs2{font-size:38.280000px;}
.fs6{font-size:46.200000px;}
.fs5{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:79.556850px;}
.ybe{bottom:143.459400px;}
.y1a{bottom:144.566850px;}
.y89{bottom:144.567000px;}
.y5d{bottom:146.451900px;}
.ye6{bottom:147.548400px;}
.yc3{bottom:148.251750px;}
.y3f{bottom:148.251900px;}
.ya6{bottom:148.774500px;}
.ybd{bottom:154.551900px;}
.y82{bottom:154.748400px;}
.y19{bottom:159.866850px;}
.y88{bottom:159.867000px;}
.yc4{bottom:164.074350px;}
.y5c{bottom:166.251900px;}
.ye5{bottom:167.348400px;}
.yc2{bottom:168.051750px;}
.y3e{bottom:168.051900px;}
.ybc{bottom:169.851900px;}
.y81{bottom:174.548400px;}
.y87{bottom:175.167000px;}
.y18{bottom:179.374350px;}
.ybb{bottom:185.151900px;}
.y5b{bottom:186.051900px;}
.ye4{bottom:187.148400px;}
.y3d{bottom:187.851900px;}
.y86{bottom:190.467000px;}
.y80{bottom:194.348400px;}
.y10b{bottom:194.674500px;}
.yba{bottom:200.451900px;}
.y10a{bottom:205.766850px;}
.y85{bottom:205.767000px;}
.y5a{bottom:205.851900px;}
.ye3{bottom:206.948400px;}
.yc1{bottom:207.651750px;}
.y3c{bottom:207.651900px;}
.y7f{bottom:214.148400px;}
.yec{bottom:214.851900px;}
.y17{bottom:215.475450px;}
.yb9{bottom:215.751900px;}
.ya5{bottom:221.067000px;}
.y84{bottom:225.274500px;}
.y59{bottom:225.651900px;}
.ye2{bottom:226.748400px;}
.y3b{bottom:227.451900px;}
.yb8{bottom:231.051900px;}
.yeb{bottom:232.851900px;}
.y7e{bottom:233.948400px;}
.y16{bottom:235.275450px;}
.ye9{bottom:236.367000px;}
.y109{bottom:240.574350px;}
.y58{bottom:245.451900px;}
.yb7{bottom:246.351900px;}
.ye1{bottom:246.548400px;}
.yc0{bottom:247.251750px;}
.y3a{bottom:247.251900px;}
.yea{bottom:250.851900px;}
.ye8{bottom:251.667000px;}
.y7d{bottom:253.748400px;}
.y15{bottom:255.075450px;}
.yb6{bottom:261.651900px;}
.y57{bottom:265.251900px;}
.ye0{bottom:266.348400px;}
.y39{bottom:267.051900px;}
.ye7{bottom:271.174500px;}
.y108{bottom:271.748400px;}
.y7c{bottom:273.548400px;}
.y14{bottom:274.875450px;}
.yb5{bottom:281.159400px;}
.ya4{bottom:283.251900px;}
.y56{bottom:285.051900px;}
.ydf{bottom:286.148400px;}
.y38{bottom:286.851900px;}
.y107{bottom:291.548400px;}
.y7b{bottom:293.348400px;}
.y13{bottom:294.675450px;}
.ya3{bottom:303.051900px;}
.y55{bottom:304.851900px;}
.yde{bottom:305.948400px;}
.ybf{bottom:306.651750px;}
.y37{bottom:306.651900px;}
.y106{bottom:311.348400px;}
.y7a{bottom:313.148400px;}
.y12{bottom:314.475450px;}
.ya2{bottom:322.851900px;}
.y54{bottom:324.651900px;}
.ydd{bottom:325.748400px;}
.y36{bottom:326.451900px;}
.y105{bottom:331.148400px;}
.y79{bottom:332.948400px;}
.ya1{bottom:342.651900px;}
.y53{bottom:344.451900px;}
.ydc{bottom:345.548400px;}
.yb4{bottom:346.251750px;}
.y35{bottom:346.251900px;}
.y104{bottom:350.948400px;}
.y78{bottom:352.748400px;}
.y11{bottom:354.075450px;}
.ya0{bottom:362.451900px;}
.y52{bottom:364.251900px;}
.ydb{bottom:365.348400px;}
.yb3{bottom:366.051750px;}
.y34{bottom:366.051900px;}
.y103{bottom:370.748400px;}
.y77{bottom:372.548400px;}
.y10{bottom:373.875450px;}
.y9f{bottom:382.251900px;}
.y51{bottom:384.051750px;}
.yda{bottom:385.148400px;}
.y33{bottom:385.851900px;}
.y102{bottom:390.548400px;}
.y76{bottom:392.348400px;}
.yf{bottom:393.675450px;}
.y9e{bottom:402.051900px;}
.y50{bottom:403.851900px;}
.yd9{bottom:404.948400px;}
.yb2{bottom:405.651750px;}
.y32{bottom:405.651900px;}
.y101{bottom:410.348400px;}
.y75{bottom:412.148400px;}
.ye{bottom:413.475450px;}
.y9d{bottom:421.851900px;}
.y4f{bottom:423.651900px;}
.yd8{bottom:424.748400px;}
.y31{bottom:425.451900px;}
.y100{bottom:430.148400px;}
.y74{bottom:431.948400px;}
.yd{bottom:433.275450px;}
.y9c{bottom:441.651900px;}
.y4e{bottom:443.451900px;}
.yd7{bottom:444.548400px;}
.yb1{bottom:445.251750px;}
.y30{bottom:445.251900px;}
.yff{bottom:449.948400px;}
.y73{bottom:451.748400px;}
.yc{bottom:453.075450px;}
.y9b{bottom:461.451900px;}
.yd6{bottom:464.348400px;}
.y2f{bottom:465.051750px;}
.yfe{bottom:469.748400px;}
.y72{bottom:471.548400px;}
.yb{bottom:472.875450px;}
.y9a{bottom:481.251900px;}
.y4d{bottom:483.051750px;}
.yd5{bottom:484.148400px;}
.y2e{bottom:484.851900px;}
.yfd{bottom:489.548400px;}
.y71{bottom:491.348400px;}
.ya{bottom:492.675450px;}
.y4c{bottom:501.051750px;}
.y99{bottom:501.051900px;}
.yd4{bottom:503.948400px;}
.yb0{bottom:504.651750px;}
.y2d{bottom:504.651900px;}
.yfc{bottom:509.348400px;}
.y70{bottom:511.148400px;}
.y9{bottom:512.475450px;}
.y4b{bottom:519.051750px;}
.y98{bottom:520.851900px;}
.yd3{bottom:523.748400px;}
.yaf{bottom:524.451750px;}
.y2c{bottom:524.451900px;}
.yfb{bottom:529.148400px;}
.y6f{bottom:530.948400px;}
.y8{bottom:532.275450px;}
.y4a{bottom:537.051750px;}
.y97{bottom:540.651900px;}
.yd2{bottom:543.548400px;}
.yae{bottom:544.251750px;}
.y2b{bottom:544.251900px;}
.yfa{bottom:548.948400px;}
.y6e{bottom:550.748400px;}
.y7{bottom:552.075450px;}
.y96{bottom:560.451900px;}
.yd1{bottom:563.348400px;}
.y2a{bottom:564.051750px;}
.yf9{bottom:568.748400px;}
.y6d{bottom:570.548400px;}
.y6{bottom:571.875450px;}
.y49{bottom:573.051750px;}
.y95{bottom:580.251900px;}
.yd0{bottom:583.148400px;}
.y29{bottom:583.851900px;}
.yf8{bottom:588.548400px;}
.y6c{bottom:590.348400px;}
.y48{bottom:592.851900px;}
.y94{bottom:600.051900px;}
.ycf{bottom:602.948400px;}
.yad{bottom:603.651750px;}
.y28{bottom:603.651900px;}
.yf7{bottom:608.348400px;}
.y6b{bottom:610.148400px;}
.y47{bottom:612.651900px;}
.y93{bottom:619.851900px;}
.yce{bottom:622.748400px;}
.yac{bottom:623.451750px;}
.y27{bottom:623.451900px;}
.yf6{bottom:628.148400px;}
.y6a{bottom:629.948400px;}
.y92{bottom:639.651900px;}
.y3{bottom:642.438750px;}
.ycd{bottom:642.548400px;}
.yab{bottom:643.251750px;}
.y26{bottom:643.251900px;}
.yf5{bottom:647.948400px;}
.y69{bottom:649.748400px;}
.y46{bottom:652.251900px;}
.ycc{bottom:662.348400px;}
.y25{bottom:663.051750px;}
.yf4{bottom:667.748400px;}
.y68{bottom:669.548400px;}
.y45{bottom:670.251900px;}
.y2{bottom:678.438750px;}
.y91{bottom:679.251900px;}
.y24{bottom:682.851900px;}
.yf3{bottom:687.548400px;}
.y44{bottom:688.251900px;}
.y67{bottom:689.348400px;}
.y90{bottom:697.251900px;}
.ycb{bottom:701.948400px;}
.yaa{bottom:702.651750px;}
.y23{bottom:702.651900px;}
.y43{bottom:706.251900px;}
.yf2{bottom:707.348400px;}
.y66{bottom:709.148400px;}
.y8f{bottom:715.251900px;}
.yca{bottom:719.948400px;}
.y83{bottom:722.451900px;}
.yf1{bottom:727.148400px;}
.y65{bottom:728.948400px;}
.y8e{bottom:733.251900px;}
.y5{bottom:737.716500px;}
.yc9{bottom:737.948400px;}
.ya9{bottom:742.251750px;}
.y22{bottom:742.251900px;}
.yf0{bottom:746.948400px;}
.y64{bottom:748.748400px;}
.y8d{bottom:751.251900px;}
.yc8{bottom:755.948400px;}
.y42{bottom:762.051750px;}
.y4{bottom:762.916500px;}
.yef{bottom:766.748400px;}
.y63{bottom:768.548400px;}
.y8c{bottom:769.251900px;}
.yc7{bottom:773.948400px;}
.y41{bottom:781.851900px;}
.yee{bottom:786.548400px;}
.y8b{bottom:787.251900px;}
.y62{bottom:788.348400px;}
.yc6{bottom:791.948400px;}
.y21{bottom:801.651900px;}
.y8a{bottom:805.251900px;}
.yed{bottom:806.348400px;}
.yc5{bottom:809.948400px;}
.ya8{bottom:821.451750px;}
.y20{bottom:821.451900px;}
.y61{bottom:827.948400px;}
.ya7{bottom:841.251750px;}
.y1f{bottom:841.251900px;}
.y60{bottom:845.948400px;}
.y1e{bottom:861.051750px;}
.y5f{bottom:863.948400px;}
.y1d{bottom:880.851900px;}
.y5e{bottom:881.948400px;}
.y1c{bottom:945.727800px;}
.y40{bottom:945.727950px;}
.y1b{bottom:945.967950px;}
.h6{height:26.061000px;}
.h9{height:26.061600px;}
.h7{height:42.891000px;}
.h8{height:42.902857px;}
.h3{height:49.152023px;}
.h2{height:50.460000px;}
.h5{height:55.506000px;}
.h4{height:70.644000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:99.611100px;}
.x6{left:106.299150px;}
.x3{left:122.008350px;}
.xa{left:127.559100px;}
.x5{left:191.978100px;}
.x7{left:271.432800px;}
.x2{left:481.886850px;}
.x8{left:499.923000px;}
.x9{left:615.295200px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v1{vertical-align:19.360000pt;}
.ls1{letter-spacing:-0.704000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.808000pt;}
.ls4{letter-spacing:4.277867pt;}
.ls3{letter-spacing:6.556267pt;}
.ls5{letter-spacing:7.092267pt;}
.ls7{letter-spacing:7.407467pt;}
.ws1{word-spacing:-14.666667pt;}
.ws12{word-spacing:-13.333333pt;}
.wsb6{word-spacing:-11.333333pt;}
.ws13{word-spacing:-10.266667pt;}
.ws66{word-spacing:-8.506667pt;}
.ws78{word-spacing:-7.733333pt;}
.ws2{word-spacing:-6.573333pt;}
.wsce{word-spacing:-3.461333pt;}
.ws95{word-spacing:-2.933333pt;}
.wsb2{word-spacing:-2.874667pt;}
.ws48{word-spacing:-2.816000pt;}
.ws8d{word-spacing:-2.757333pt;}
.ws21{word-spacing:-2.698667pt;}
.wsdc{word-spacing:-2.640000pt;}
.ws2c{word-spacing:-2.581333pt;}
.ws5f{word-spacing:-2.522667pt;}
.wsc8{word-spacing:-2.506667pt;}
.wsb7{word-spacing:-2.464000pt;}
.ws6{word-spacing:-2.405333pt;}
.ws72{word-spacing:-2.346667pt;}
.ws4d{word-spacing:-2.288000pt;}
.wsc6{word-spacing:-2.229333pt;}
.ws5b{word-spacing:-2.170667pt;}
.ws93{word-spacing:-2.112000pt;}
.ws4c{word-spacing:-2.053333pt;}
.ws6e{word-spacing:-1.994667pt;}
.ws7c{word-spacing:-1.973333pt;}
.wsbd{word-spacing:-1.936000pt;}
.ws43{word-spacing:-1.877333pt;}
.ws7b{word-spacing:-1.866667pt;}
.ws3a{word-spacing:-1.818667pt;}
.wsbc{word-spacing:-1.760000pt;}
.ws36{word-spacing:-1.642667pt;}
.wsd2{word-spacing:-1.632000pt;}
.wsad{word-spacing:-1.600000pt;}
.ws91{word-spacing:-1.584000pt;}
.ws28{word-spacing:-1.525333pt;}
.wsa6{word-spacing:-1.466667pt;}
.wsbe{word-spacing:-1.408000pt;}
.wsc0{word-spacing:-1.360000pt;}
.ws5e{word-spacing:-1.349333pt;}
.wsae{word-spacing:-1.333333pt;}
.wsa4{word-spacing:-1.290667pt;}
.ws9c{word-spacing:-1.269333pt;}
.ws1e{word-spacing:-1.232000pt;}
.ws77{word-spacing:-1.178667pt;}
.ws56{word-spacing:-1.173333pt;}
.wsa1{word-spacing:-1.114667pt;}
.ws4b{word-spacing:-1.056000pt;}
.ws50{word-spacing:-0.997333pt;}
.ws88{word-spacing:-0.952000pt;}
.ws81{word-spacing:-0.938667pt;}
.ws71{word-spacing:-0.880000pt;}
.ws8b{word-spacing:-0.861333pt;}
.wsa{word-spacing:-0.821333pt;}
.ws96{word-spacing:-0.762667pt;}
.ws76{word-spacing:-0.725333pt;}
.wsf{word-spacing:-0.704000pt;}
.wsb0{word-spacing:-0.693333pt;}
.wsa3{word-spacing:-0.645333pt;}
.wsbf{word-spacing:-0.589333pt;}
.wscf{word-spacing:-0.586667pt;}
.wsca{word-spacing:-0.544000pt;}
.ws42{word-spacing:-0.528000pt;}
.ws40{word-spacing:-0.469333pt;}
.wsa0{word-spacing:-0.410667pt;}
.wsc2{word-spacing:-0.408000pt;}
.ws44{word-spacing:-0.352000pt;}
.ws9{word-spacing:-0.293333pt;}
.ws9d{word-spacing:-0.272000pt;}
.ws4f{word-spacing:-0.234667pt;}
.ws6c{word-spacing:-0.176000pt;}
.ws7e{word-spacing:-0.160000pt;}
.ws89{word-spacing:-0.136000pt;}
.ws8e{word-spacing:-0.117333pt;}
.ws8c{word-spacing:-0.090667pt;}
.ws84{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.058667pt;}
.ws7f{word-spacing:0.106667pt;}
.ws6f{word-spacing:0.117333pt;}
.ws27{word-spacing:0.176000pt;}
.ws92{word-spacing:0.234667pt;}
.ws9a{word-spacing:0.317333pt;}
.ws10{word-spacing:0.352000pt;}
.wsd4{word-spacing:0.408000pt;}
.ws2f{word-spacing:0.410667pt;}
.ws9f{word-spacing:0.469333pt;}
.ws7d{word-spacing:0.480000pt;}
.ws18{word-spacing:0.528000pt;}
.wscb{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.544000pt;}
.ws90{word-spacing:0.586667pt;}
.wsa2{word-spacing:0.645333pt;}
.wsa9{word-spacing:0.693333pt;}
.ws5{word-spacing:0.704000pt;}
.ws6b{word-spacing:0.762667pt;}
.ws8a{word-spacing:0.816000pt;}
.ws94{word-spacing:0.821333pt;}
.ws31{word-spacing:0.880000pt;}
.wsda{word-spacing:0.952000pt;}
.wsa8{word-spacing:0.960000pt;}
.ws8{word-spacing:0.997333pt;}
.ws83{word-spacing:1.056000pt;}
.ws5c{word-spacing:1.114667pt;}
.wsc9{word-spacing:1.120000pt;}
.wsb{word-spacing:1.173333pt;}
.ws67{word-spacing:1.232000pt;}
.ws39{word-spacing:1.290667pt;}
.wsd8{word-spacing:1.314667pt;}
.ws14{word-spacing:1.349333pt;}
.ws59{word-spacing:1.408000pt;}
.wsac{word-spacing:1.440000pt;}
.ws11{word-spacing:1.466667pt;}
.ws3c{word-spacing:1.525333pt;}
.ws98{word-spacing:1.541333pt;}
.ws38{word-spacing:1.546667pt;}
.ws58{word-spacing:1.584000pt;}
.ws1a{word-spacing:1.642667pt;}
.ws74{word-spacing:1.677333pt;}
.wsb9{word-spacing:1.701333pt;}
.wsab{word-spacing:1.706667pt;}
.ws32{word-spacing:1.760000pt;}
.ws34{word-spacing:1.813333pt;}
.ws17{word-spacing:1.818667pt;}
.ws23{word-spacing:1.877333pt;}
.ws87{word-spacing:1.936000pt;}
.wsc3{word-spacing:1.994667pt;}
.ws62{word-spacing:2.053333pt;}
.ws9e{word-spacing:2.085333pt;}
.ws57{word-spacing:2.112000pt;}
.ws35{word-spacing:2.133333pt;}
.ws65{word-spacing:2.170667pt;}
.ws1f{word-spacing:2.229333pt;}
.ws1c{word-spacing:2.288000pt;}
.ws79{word-spacing:2.293333pt;}
.ws52{word-spacing:2.346667pt;}
.ws19{word-spacing:2.405333pt;}
.ws75{word-spacing:2.448000pt;}
.wsd{word-spacing:2.464000pt;}
.ws5a{word-spacing:2.522667pt;}
.ws97{word-spacing:2.581333pt;}
.ws1d{word-spacing:2.640000pt;}
.ws41{word-spacing:2.698667pt;}
.ws25{word-spacing:2.757333pt;}
.ws68{word-spacing:2.816000pt;}
.ws22{word-spacing:2.874667pt;}
.ws47{word-spacing:2.880000pt;}
.ws4a{word-spacing:2.933333pt;}
.wsc1{word-spacing:2.946667pt;}
.ws33{word-spacing:2.986667pt;}
.ws7{word-spacing:2.992000pt;}
.ws82{word-spacing:3.050667pt;}
.ws15{word-spacing:3.109333pt;}
.ws73{word-spacing:3.128000pt;}
.ws61{word-spacing:3.168000pt;}
.ws2d{word-spacing:3.226667pt;}
.ws3e{word-spacing:3.285333pt;}
.ws60{word-spacing:3.402667pt;}
.ws30{word-spacing:3.461333pt;}
.wsd9{word-spacing:3.490667pt;}
.ws80{word-spacing:3.520000pt;}
.ws99{word-spacing:3.536000pt;}
.wse{word-spacing:3.578667pt;}
.wsa7{word-spacing:3.626667pt;}
.wsde{word-spacing:3.696000pt;}
.ws4e{word-spacing:3.754667pt;}
.wsaf{word-spacing:3.786667pt;}
.ws64{word-spacing:3.813333pt;}
.ws53{word-spacing:3.872000pt;}
.wsc{word-spacing:3.930667pt;}
.ws63{word-spacing:3.989333pt;}
.ws9b{word-spacing:4.034667pt;}
.ws26{word-spacing:4.048000pt;}
.ws24{word-spacing:4.106667pt;}
.ws5d{word-spacing:4.224000pt;}
.ws70{word-spacing:4.282667pt;}
.wsb8{word-spacing:4.400000pt;}
.ws86{word-spacing:4.458667pt;}
.ws46{word-spacing:4.480000pt;}
.wsd5{word-spacing:4.576000pt;}
.ws29{word-spacing:4.634667pt;}
.wsbb{word-spacing:4.693333pt;}
.ws85{word-spacing:4.810667pt;}
.ws45{word-spacing:4.906667pt;}
.ws55{word-spacing:4.928000pt;}
.wsc7{word-spacing:4.986667pt;}
.ws2a{word-spacing:5.104000pt;}
.ws49{word-spacing:5.162667pt;}
.ws7a{word-spacing:5.280000pt;}
.wsdf{word-spacing:5.338667pt;}
.ws4{word-spacing:5.456000pt;}
.wsb1{word-spacing:5.514667pt;}
.wsdb{word-spacing:5.690667pt;}
.ws20{word-spacing:5.808000pt;}
.ws37{word-spacing:5.866667pt;}
.ws8f{word-spacing:5.925333pt;}
.ws16{word-spacing:5.984000pt;}
.ws3f{word-spacing:6.042667pt;}
.wsd1{word-spacing:6.074667pt;}
.wsb5{word-spacing:6.218667pt;}
.wsaa{word-spacing:6.240000pt;}
.ws2e{word-spacing:6.394667pt;}
.ws3b{word-spacing:6.453333pt;}
.ws69{word-spacing:6.570667pt;}
.wsa5{word-spacing:6.746667pt;}
.ws51{word-spacing:6.922667pt;}
.ws6d{word-spacing:6.981333pt;}
.ws1b{word-spacing:7.040000pt;}
.wscc{word-spacing:7.098667pt;}
.wscd{word-spacing:7.157333pt;}
.wsba{word-spacing:7.216000pt;}
.wsd6{word-spacing:7.274667pt;}
.wse0{word-spacing:7.392000pt;}
.wsd0{word-spacing:7.626667pt;}
.wsdd{word-spacing:7.744000pt;}
.ws6a{word-spacing:7.920000pt;}
.ws3d{word-spacing:7.978667pt;}
.ws54{word-spacing:8.096000pt;}
.wsc5{word-spacing:8.213333pt;}
.wsc4{word-spacing:8.389333pt;}
.wsd7{word-spacing:8.682667pt;}
.wsb3{word-spacing:11.029333pt;}
.wsb4{word-spacing:11.088000pt;}
._a{margin-left:-9.939733pt;}
._8{margin-left:-8.049600pt;}
._6{margin-left:-6.934400pt;}
._9{margin-left:-6.036800pt;}
._4{margin-left:-4.946667pt;}
._0{margin-left:-3.466667pt;}
._3{margin-left:-2.334400pt;}
._1{margin-left:-1.162133pt;}
._2{width:0.896000pt;}
._7{width:1.961067pt;}
._5{width:16.896000pt;}
.fs4{font-size:26.293333pt;}
.fs7{font-size:30.933333pt;}
.fs2{font-size:34.026667pt;}
.fs6{font-size:41.066667pt;}
.fs5{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:70.717200pt;}
.ybe{bottom:127.519467pt;}
.y1a{bottom:128.503867pt;}
.y89{bottom:128.504000pt;}
.y5d{bottom:130.179467pt;}
.ye6{bottom:131.154133pt;}
.yc3{bottom:131.779333pt;}
.y3f{bottom:131.779467pt;}
.ya6{bottom:132.244000pt;}
.ybd{bottom:137.379467pt;}
.y82{bottom:137.554133pt;}
.y19{bottom:142.103867pt;}
.y88{bottom:142.104000pt;}
.yc4{bottom:145.843867pt;}
.y5c{bottom:147.779467pt;}
.ye5{bottom:148.754133pt;}
.yc2{bottom:149.379333pt;}
.y3e{bottom:149.379467pt;}
.ybc{bottom:150.979467pt;}
.y81{bottom:155.154133pt;}
.y87{bottom:155.704000pt;}
.y18{bottom:159.443867pt;}
.ybb{bottom:164.579467pt;}
.y5b{bottom:165.379467pt;}
.ye4{bottom:166.354133pt;}
.y3d{bottom:166.979467pt;}
.y86{bottom:169.304000pt;}
.y80{bottom:172.754133pt;}
.y10b{bottom:173.044000pt;}
.yba{bottom:178.179467pt;}
.y10a{bottom:182.903867pt;}
.y85{bottom:182.904000pt;}
.y5a{bottom:182.979467pt;}
.ye3{bottom:183.954133pt;}
.yc1{bottom:184.579333pt;}
.y3c{bottom:184.579467pt;}
.y7f{bottom:190.354133pt;}
.yec{bottom:190.979467pt;}
.y17{bottom:191.533733pt;}
.yb9{bottom:191.779467pt;}
.ya5{bottom:196.504000pt;}
.y84{bottom:200.244000pt;}
.y59{bottom:200.579467pt;}
.ye2{bottom:201.554133pt;}
.y3b{bottom:202.179467pt;}
.yb8{bottom:205.379467pt;}
.yeb{bottom:206.979467pt;}
.y7e{bottom:207.954133pt;}
.y16{bottom:209.133733pt;}
.ye9{bottom:210.104000pt;}
.y109{bottom:213.843867pt;}
.y58{bottom:218.179467pt;}
.yb7{bottom:218.979467pt;}
.ye1{bottom:219.154133pt;}
.yc0{bottom:219.779333pt;}
.y3a{bottom:219.779467pt;}
.yea{bottom:222.979467pt;}
.ye8{bottom:223.704000pt;}
.y7d{bottom:225.554133pt;}
.y15{bottom:226.733733pt;}
.yb6{bottom:232.579467pt;}
.y57{bottom:235.779467pt;}
.ye0{bottom:236.754133pt;}
.y39{bottom:237.379467pt;}
.ye7{bottom:241.044000pt;}
.y108{bottom:241.554133pt;}
.y7c{bottom:243.154133pt;}
.y14{bottom:244.333733pt;}
.yb5{bottom:249.919467pt;}
.ya4{bottom:251.779467pt;}
.y56{bottom:253.379467pt;}
.ydf{bottom:254.354133pt;}
.y38{bottom:254.979467pt;}
.y107{bottom:259.154133pt;}
.y7b{bottom:260.754133pt;}
.y13{bottom:261.933733pt;}
.ya3{bottom:269.379467pt;}
.y55{bottom:270.979467pt;}
.yde{bottom:271.954133pt;}
.ybf{bottom:272.579333pt;}
.y37{bottom:272.579467pt;}
.y106{bottom:276.754133pt;}
.y7a{bottom:278.354133pt;}
.y12{bottom:279.533733pt;}
.ya2{bottom:286.979467pt;}
.y54{bottom:288.579467pt;}
.ydd{bottom:289.554133pt;}
.y36{bottom:290.179467pt;}
.y105{bottom:294.354133pt;}
.y79{bottom:295.954133pt;}
.ya1{bottom:304.579467pt;}
.y53{bottom:306.179467pt;}
.ydc{bottom:307.154133pt;}
.yb4{bottom:307.779333pt;}
.y35{bottom:307.779467pt;}
.y104{bottom:311.954133pt;}
.y78{bottom:313.554133pt;}
.y11{bottom:314.733733pt;}
.ya0{bottom:322.179467pt;}
.y52{bottom:323.779467pt;}
.ydb{bottom:324.754133pt;}
.yb3{bottom:325.379333pt;}
.y34{bottom:325.379467pt;}
.y103{bottom:329.554133pt;}
.y77{bottom:331.154133pt;}
.y10{bottom:332.333733pt;}
.y9f{bottom:339.779467pt;}
.y51{bottom:341.379333pt;}
.yda{bottom:342.354133pt;}
.y33{bottom:342.979467pt;}
.y102{bottom:347.154133pt;}
.y76{bottom:348.754133pt;}
.yf{bottom:349.933733pt;}
.y9e{bottom:357.379467pt;}
.y50{bottom:358.979467pt;}
.yd9{bottom:359.954133pt;}
.yb2{bottom:360.579333pt;}
.y32{bottom:360.579467pt;}
.y101{bottom:364.754133pt;}
.y75{bottom:366.354133pt;}
.ye{bottom:367.533733pt;}
.y9d{bottom:374.979467pt;}
.y4f{bottom:376.579467pt;}
.yd8{bottom:377.554133pt;}
.y31{bottom:378.179467pt;}
.y100{bottom:382.354133pt;}
.y74{bottom:383.954133pt;}
.yd{bottom:385.133733pt;}
.y9c{bottom:392.579467pt;}
.y4e{bottom:394.179467pt;}
.yd7{bottom:395.154133pt;}
.yb1{bottom:395.779333pt;}
.y30{bottom:395.779467pt;}
.yff{bottom:399.954133pt;}
.y73{bottom:401.554133pt;}
.yc{bottom:402.733733pt;}
.y9b{bottom:410.179467pt;}
.yd6{bottom:412.754133pt;}
.y2f{bottom:413.379333pt;}
.yfe{bottom:417.554133pt;}
.y72{bottom:419.154133pt;}
.yb{bottom:420.333733pt;}
.y9a{bottom:427.779467pt;}
.y4d{bottom:429.379333pt;}
.yd5{bottom:430.354133pt;}
.y2e{bottom:430.979467pt;}
.yfd{bottom:435.154133pt;}
.y71{bottom:436.754133pt;}
.ya{bottom:437.933733pt;}
.y4c{bottom:445.379333pt;}
.y99{bottom:445.379467pt;}
.yd4{bottom:447.954133pt;}
.yb0{bottom:448.579333pt;}
.y2d{bottom:448.579467pt;}
.yfc{bottom:452.754133pt;}
.y70{bottom:454.354133pt;}
.y9{bottom:455.533733pt;}
.y4b{bottom:461.379333pt;}
.y98{bottom:462.979467pt;}
.yd3{bottom:465.554133pt;}
.yaf{bottom:466.179333pt;}
.y2c{bottom:466.179467pt;}
.yfb{bottom:470.354133pt;}
.y6f{bottom:471.954133pt;}
.y8{bottom:473.133733pt;}
.y4a{bottom:477.379333pt;}
.y97{bottom:480.579467pt;}
.yd2{bottom:483.154133pt;}
.yae{bottom:483.779333pt;}
.y2b{bottom:483.779467pt;}
.yfa{bottom:487.954133pt;}
.y6e{bottom:489.554133pt;}
.y7{bottom:490.733733pt;}
.y96{bottom:498.179467pt;}
.yd1{bottom:500.754133pt;}
.y2a{bottom:501.379333pt;}
.yf9{bottom:505.554133pt;}
.y6d{bottom:507.154133pt;}
.y6{bottom:508.333733pt;}
.y49{bottom:509.379333pt;}
.y95{bottom:515.779467pt;}
.yd0{bottom:518.354133pt;}
.y29{bottom:518.979467pt;}
.yf8{bottom:523.154133pt;}
.y6c{bottom:524.754133pt;}
.y48{bottom:526.979467pt;}
.y94{bottom:533.379467pt;}
.ycf{bottom:535.954133pt;}
.yad{bottom:536.579333pt;}
.y28{bottom:536.579467pt;}
.yf7{bottom:540.754133pt;}
.y6b{bottom:542.354133pt;}
.y47{bottom:544.579467pt;}
.y93{bottom:550.979467pt;}
.yce{bottom:553.554133pt;}
.yac{bottom:554.179333pt;}
.y27{bottom:554.179467pt;}
.yf6{bottom:558.354133pt;}
.y6a{bottom:559.954133pt;}
.y92{bottom:568.579467pt;}
.y3{bottom:571.056667pt;}
.ycd{bottom:571.154133pt;}
.yab{bottom:571.779333pt;}
.y26{bottom:571.779467pt;}
.yf5{bottom:575.954133pt;}
.y69{bottom:577.554133pt;}
.y46{bottom:579.779467pt;}
.ycc{bottom:588.754133pt;}
.y25{bottom:589.379333pt;}
.yf4{bottom:593.554133pt;}
.y68{bottom:595.154133pt;}
.y45{bottom:595.779467pt;}
.y2{bottom:603.056667pt;}
.y91{bottom:603.779467pt;}
.y24{bottom:606.979467pt;}
.yf3{bottom:611.154133pt;}
.y44{bottom:611.779467pt;}
.y67{bottom:612.754133pt;}
.y90{bottom:619.779467pt;}
.ycb{bottom:623.954133pt;}
.yaa{bottom:624.579333pt;}
.y23{bottom:624.579467pt;}
.y43{bottom:627.779467pt;}
.yf2{bottom:628.754133pt;}
.y66{bottom:630.354133pt;}
.y8f{bottom:635.779467pt;}
.yca{bottom:639.954133pt;}
.y83{bottom:642.179467pt;}
.yf1{bottom:646.354133pt;}
.y65{bottom:647.954133pt;}
.y8e{bottom:651.779467pt;}
.y5{bottom:655.748000pt;}
.yc9{bottom:655.954133pt;}
.ya9{bottom:659.779333pt;}
.y22{bottom:659.779467pt;}
.yf0{bottom:663.954133pt;}
.y64{bottom:665.554133pt;}
.y8d{bottom:667.779467pt;}
.yc8{bottom:671.954133pt;}
.y42{bottom:677.379333pt;}
.y4{bottom:678.148000pt;}
.yef{bottom:681.554133pt;}
.y63{bottom:683.154133pt;}
.y8c{bottom:683.779467pt;}
.yc7{bottom:687.954133pt;}
.y41{bottom:694.979467pt;}
.yee{bottom:699.154133pt;}
.y8b{bottom:699.779467pt;}
.y62{bottom:700.754133pt;}
.yc6{bottom:703.954133pt;}
.y21{bottom:712.579467pt;}
.y8a{bottom:715.779467pt;}
.yed{bottom:716.754133pt;}
.yc5{bottom:719.954133pt;}
.ya8{bottom:730.179333pt;}
.y20{bottom:730.179467pt;}
.y61{bottom:735.954133pt;}
.ya7{bottom:747.779333pt;}
.y1f{bottom:747.779467pt;}
.y60{bottom:751.954133pt;}
.y1e{bottom:765.379333pt;}
.y5f{bottom:767.954133pt;}
.y1d{bottom:782.979467pt;}
.y5e{bottom:783.954133pt;}
.y1c{bottom:840.646933pt;}
.y40{bottom:840.647067pt;}
.y1b{bottom:840.860400pt;}
.h6{height:23.165333pt;}
.h9{height:23.165867pt;}
.h7{height:38.125333pt;}
.h8{height:38.135873pt;}
.h3{height:43.690687pt;}
.h2{height:44.853333pt;}
.h5{height:49.338667pt;}
.h4{height:62.794667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:88.543200pt;}
.x6{left:94.488133pt;}
.x3{left:108.451867pt;}
.xa{left:113.385867pt;}
.x5{left:170.647200pt;}
.x7{left:241.273600pt;}
.x2{left:428.343867pt;}
.x8{left:444.376000pt;}
.x9{left:546.929067pt;}
}

