
    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_d04c17f5cf9192a86b042845.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_800374f1037d796b1e5c6824.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_90174a3d664fc8ebb23618c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_1480e5b6d95c4b4de27b221f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.175781;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_49a61a9b94829c80634cb5e0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_79f6d5814aff67e1ea7d37a9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.889160;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_10ddeb2d72d38a95a510055e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.889160;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_eb42b218d215d379c03a73b2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.164551;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_6dc6f7b225088213e7dd11a4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.889160;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:ffa;src:url('chunks/assets/font_d1f0cbf2005f59c4ae681606.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_79f6d5814aff67e1ea7d37a9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.889160;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:ffc;src:url('chunks/assets/font_3d9ba1b32370950d0e571976.woff')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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:ffd;src:url('chunks/assets/font_94c86f1bf48b1431ceeb785f.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b4f6d53daac27bee483b8947.woff')format("woff");}.ffe{font-family:ffe;line-height:0.936035;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);}
.v3{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:-3.360000px;}
.ls15{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.699600px;}
.ls6{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.349800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004920px;}
.ls7{letter-spacing:0.005520px;}
.ls0{letter-spacing:0.006144px;}
.ls16{letter-spacing:0.029400px;}
.ls11{letter-spacing:0.349800px;}
.ls2{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.599400px;}
.lsf{letter-spacing:0.600000px;}
.lse{letter-spacing:0.699600px;}
.ls1{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.458600px;}
.ls17{letter-spacing:3.362400px;}
.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;}
}
.ws56{word-spacing:-17.880000px;}
.ws54{word-spacing:-17.280000px;}
.ws10{word-spacing:-16.680000px;}
.wsbe{word-spacing:-16.080000px;}
.ws82{word-spacing:-15.480000px;}
.ws0{word-spacing:-13.824000px;}
.ws78{word-spacing:-13.620000px;}
.ws2d{word-spacing:-13.344000px;}
.ws71{word-spacing:-12.384000px;}
.ws22{word-spacing:-10.424040px;}
.ws55{word-spacing:-10.074240px;}
.wsf{word-spacing:-9.724440px;}
.ws64{word-spacing:-9.374640px;}
.ws21{word-spacing:-9.024840px;}
.wsc1{word-spacing:-7.440000px;}
.wsc2{word-spacing:-4.200000px;}
.wsbf{word-spacing:-3.600000px;}
.wsaf{word-spacing:-3.300000px;}
.wsa4{word-spacing:-3.120000px;}
.ws7f{word-spacing:-3.060000px;}
.ws63{word-spacing:-2.940000px;}
.ws8e{word-spacing:-2.820000px;}
.ws39{word-spacing:-2.700000px;}
.ws52{word-spacing:-2.640000px;}
.wsc5{word-spacing:-2.580000px;}
.ws69{word-spacing:-2.520000px;}
.ws38{word-spacing:-2.460000px;}
.ws2a{word-spacing:-2.400000px;}
.ws5d{word-spacing:-2.340000px;}
.ws7d{word-spacing:-2.220000px;}
.wsb6{word-spacing:-2.160000px;}
.ws86{word-spacing:-2.100000px;}
.ws29{word-spacing:-2.040000px;}
.wsa0{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.860000px;}
.wsa8{word-spacing:-1.740000px;}
.ws8c{word-spacing:-1.680000px;}
.ws8d{word-spacing:-1.632000px;}
.ws51{word-spacing:-1.620000px;}
.ws33{word-spacing:-1.560000px;}
.wsbc{word-spacing:-1.500000px;}
.ws23{word-spacing:-1.440000px;}
.wsa3{word-spacing:-1.380000px;}
.ws30{word-spacing:-1.320000px;}
.ws45{word-spacing:-1.248000px;}
.ws28{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.104000px;}
.ws5{word-spacing:-1.080000px;}
.ws62{word-spacing:-1.020000px;}
.ws77{word-spacing:-1.008000px;}
.ws20{word-spacing:-0.912000px;}
.ws9e{word-spacing:-0.900000px;}
.wsb7{word-spacing:-0.864000px;}
.ws12{word-spacing:-0.840000px;}
.ws13{word-spacing:-0.780000px;}
.ws8f{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.600000px;}
.ws35{word-spacing:-0.540000px;}
.wsb{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.420000px;}
.ws5b{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.300000px;}
.ws7{word-spacing:-0.240000px;}
.wsba{word-spacing:-0.144000px;}
.wsa5{word-spacing:-0.120000px;}
.ws79{word-spacing:-0.060000px;}
.wse{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws9c{word-spacing:0.120000px;}
.ws4{word-spacing:0.162000px;}
.ws95{word-spacing:0.180000px;}
.wsb4{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.wsad{word-spacing:0.384000px;}
.ws60{word-spacing:0.420000px;}
.ws9{word-spacing:0.480000px;}
.ws41{word-spacing:0.540000px;}
.ws6{word-spacing:0.600000px;}
.wsa9{word-spacing:0.660000px;}
.ws9f{word-spacing:0.900000px;}
.ws76{word-spacing:0.960000px;}
.ws3f{word-spacing:1.020000px;}
.ws2{word-spacing:1.080000px;}
.ws24{word-spacing:1.140000px;}
.ws11{word-spacing:1.200000px;}
.ws1d{word-spacing:1.248000px;}
.ws34{word-spacing:1.260000px;}
.ws32{word-spacing:1.380000px;}
.ws48{word-spacing:1.392000px;}
.ws40{word-spacing:1.440000px;}
.ws3a{word-spacing:1.500000px;}
.ws72{word-spacing:1.560000px;}
.wsbd{word-spacing:1.620000px;}
.wsa6{word-spacing:1.680000px;}
.wsb0{word-spacing:1.740000px;}
.ws80{word-spacing:1.800000px;}
.ws89{word-spacing:1.824000px;}
.ws96{word-spacing:1.860000px;}
.ws7a{word-spacing:1.920000px;}
.ws47{word-spacing:1.968000px;}
.ws75{word-spacing:1.980000px;}
.ws1c{word-spacing:2.016000px;}
.ws81{word-spacing:2.040000px;}
.ws43{word-spacing:2.100000px;}
.ws5c{word-spacing:2.160000px;}
.ws19{word-spacing:2.220000px;}
.ws7b{word-spacing:2.280000px;}
.ws87{word-spacing:2.400000px;}
.ws7c{word-spacing:2.460000px;}
.ws14{word-spacing:2.580000px;}
.ws4f{word-spacing:2.700000px;}
.ws3e{word-spacing:2.760000px;}
.ws98{word-spacing:2.784000px;}
.ws8a{word-spacing:2.928000px;}
.ws16{word-spacing:3.000000px;}
.ws49{word-spacing:3.072000px;}
.ws37{word-spacing:3.180000px;}
.ws68{word-spacing:3.240000px;}
.ws91{word-spacing:3.300000px;}
.wsd{word-spacing:3.312000px;}
.ws4e{word-spacing:3.660000px;}
.wsc6{word-spacing:3.720000px;}
.wsb1{word-spacing:3.780000px;}
.ws2b{word-spacing:3.792000px;}
.ws3b{word-spacing:3.840000px;}
.ws99{word-spacing:3.936000px;}
.ws6c{word-spacing:4.032000px;}
.ws17{word-spacing:4.080000px;}
.ws4d{word-spacing:4.200000px;}
.ws65{word-spacing:4.260000px;}
.ws97{word-spacing:4.320000px;}
.ws5a{word-spacing:4.380000px;}
.wsae{word-spacing:4.440000px;}
.wsa1{word-spacing:4.500000px;}
.ws94{word-spacing:4.560000px;}
.wsb9{word-spacing:4.620000px;}
.wsaa{word-spacing:4.680000px;}
.ws4c{word-spacing:4.740000px;}
.ws4b{word-spacing:4.800000px;}
.ws2e{word-spacing:4.920000px;}
.wsa{word-spacing:4.944000px;}
.ws84{word-spacing:4.980000px;}
.wsac{word-spacing:5.184000px;}
.ws5e{word-spacing:5.220000px;}
.wsc3{word-spacing:5.280000px;}
.wsa2{word-spacing:5.340000px;}
.ws31{word-spacing:5.460000px;}
.ws6e{word-spacing:5.472000px;}
.ws46{word-spacing:5.520000px;}
.wsb8{word-spacing:5.580000px;}
.ws6b{word-spacing:5.616000px;}
.ws85{word-spacing:5.640000px;}
.wsb5{word-spacing:5.820000px;}
.ws3d{word-spacing:5.940000px;}
.ws58{word-spacing:6.060000px;}
.ws42{word-spacing:6.120000px;}
.ws1a{word-spacing:6.240000px;}
.ws88{word-spacing:6.360000px;}
.wsa7{word-spacing:6.420000px;}
.ws1f{word-spacing:6.480000px;}
.ws6f{word-spacing:6.528000px;}
.ws3c{word-spacing:6.576000px;}
.ws59{word-spacing:6.660000px;}
.wsb3{word-spacing:6.720000px;}
.ws93{word-spacing:6.900000px;}
.ws4a{word-spacing:6.960000px;}
.ws70{word-spacing:7.056000px;}
.ws90{word-spacing:7.080000px;}
.ws5f{word-spacing:7.320000px;}
.ws9d{word-spacing:7.440000px;}
.ws15{word-spacing:7.500000px;}
.wsc{word-spacing:7.680000px;}
.ws9a{word-spacing:7.872000px;}
.ws27{word-spacing:8.040000px;}
.wsab{word-spacing:8.160000px;}
.ws25{word-spacing:8.280000px;}
.ws67{word-spacing:8.340000px;}
.ws61{word-spacing:8.400000px;}
.ws73{word-spacing:8.580000px;}
.ws74{word-spacing:8.640000px;}
.wsb2{word-spacing:8.820000px;}
.ws92{word-spacing:8.880000px;}
.ws7e{word-spacing:9.000000px;}
.ws44{word-spacing:9.060000px;}
.ws8b{word-spacing:9.408000px;}
.ws9b{word-spacing:9.780000px;}
.ws3{word-spacing:10.044000px;}
.ws57{word-spacing:10.320000px;}
.ws2c{word-spacing:10.608000px;}
.ws8{word-spacing:10.656000px;}
.ws6d{word-spacing:11.280000px;}
.ws83{word-spacing:11.400000px;}
.ws26{word-spacing:11.760000px;}
.ws6a{word-spacing:12.144000px;}
.ws36{word-spacing:12.900000px;}
.wsc7{word-spacing:13.560000px;}
.ws1e{word-spacing:15.456000px;}
.wsbb{word-spacing:16.380000px;}
.wsc4{word-spacing:17.100000px;}
.wsc0{word-spacing:18.060000px;}
._13{margin-left:-22.320000px;}
._10{margin-left:-16.365600px;}
._0{margin-left:-15.001200px;}
._11{margin-left:-11.052600px;}
._16{margin-left:-8.129400px;}
._17{margin-left:-5.784000px;}
._12{margin-left:-4.518000px;}
._9{margin-left:-3.501600px;}
._5{margin-left:-2.366400px;}
._7{margin-left:-1.305600px;}
._2{width:1.090800px;}
._8{width:2.305200px;}
._1{width:3.351600px;}
._4{width:4.984200px;}
._b{width:6.271800px;}
._e{width:8.018400px;}
._d{width:9.061800px;}
._3{width:10.378800px;}
._a{width:11.647200px;}
._18{width:13.527600px;}
._c{width:14.875800px;}
._6{width:16.162200px;}
._15{width:18.012000px;}
._19{width:19.222800px;}
._f{width:20.235600px;}
._14{width:24.744000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs5{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:33.011100px;}
.y52{bottom:34.853700px;}
.y25{bottom:52.043100px;}
.y24{bottom:68.243100px;}
.yaf{bottom:106.299000px;}
.y22{bottom:106.299150px;}
.y50{bottom:106.299300px;}
.y118{bottom:112.927800px;}
.yb1{bottom:114.046200px;}
.yae{bottom:120.699000px;}
.y21{bottom:120.699150px;}
.y72{bottom:120.699300px;}
.y4f{bottom:124.951200px;}
.y117{bottom:130.927800px;}
.yb0{bottom:132.046200px;}
.y20{bottom:135.099150px;}
.y86{bottom:135.099300px;}
.yad{bottom:139.351050px;}
.y4e{bottom:139.351200px;}
.y76{bottom:143.603250px;}
.y116{bottom:148.927800px;}
.y1f{bottom:149.499150px;}
.y85{bottom:149.499300px;}
.y75{bottom:150.046200px;}
.yac{bottom:153.751050px;}
.y4d{bottom:153.751200px;}
.ydc{bottom:154.171800px;}
.y5f{bottom:158.003250px;}
.y1e{bottom:163.899150px;}
.y84{bottom:163.899300px;}
.y115{bottom:166.927800px;}
.y74{bottom:168.046200px;}
.y4c{bottom:168.151200px;}
.ydb{bottom:172.171800px;}
.y5e{bottom:172.403250px;}
.y1d{bottom:178.299150px;}
.y83{bottom:178.299300px;}
.yd3{bottom:182.551200px;}
.y114{bottom:184.927800px;}
.y73{bottom:186.046200px;}
.yf1{bottom:186.230400px;}
.y4b{bottom:186.803250px;}
.yab{bottom:190.171650px;}
.yda{bottom:190.171800px;}
.y5d{bottom:191.055150px;}
.y1c{bottom:192.699150px;}
.y82{bottom:192.699300px;}
.yd2{bottom:196.951200px;}
.y4a{bottom:201.203250px;}
.y113{bottom:202.927800px;}
.y6b{bottom:204.046200px;}
.ydf{bottom:204.230400px;}
.y1b{bottom:207.099150px;}
.y81{bottom:207.099300px;}
.yaa{bottom:208.171650px;}
.yd9{bottom:208.171800px;}
.yd1{bottom:211.351200px;}
.y71{bottom:215.603250px;}
.y49{bottom:219.855150px;}
.y112{bottom:220.927800px;}
.y1a{bottom:221.499150px;}
.y80{bottom:221.499300px;}
.y6a{bottom:222.046200px;}
.yde{bottom:222.230400px;}
.yd0{bottom:225.751200px;}
.ya9{bottom:226.171650px;}
.yd8{bottom:226.171800px;}
.y48{bottom:234.255150px;}
.y111{bottom:238.927800px;}
.y69{bottom:240.046200px;}
.y7f{bottom:240.151200px;}
.y5c{bottom:240.230400px;}
.ya8{bottom:244.171650px;}
.yd7{bottom:244.171800px;}
.y47{bottom:248.655150px;}
.y7e{bottom:254.551200px;}
.y110{bottom:256.927800px;}
.y68{bottom:258.046200px;}
.y5b{bottom:258.230400px;}
.ya7{bottom:262.171650px;}
.yd6{bottom:262.171800px;}
.y46{bottom:263.055150px;}
.y7d{bottom:268.951200px;}
.y19{bottom:269.159850px;}
.y10f{bottom:274.927800px;}
.y67{bottom:276.046200px;}
.y5a{bottom:276.230400px;}
.y70{bottom:277.455150px;}
.ya6{bottom:280.171650px;}
.yd5{bottom:280.171800px;}
.y45{bottom:281.707200px;}
.y18{bottom:287.159850px;}
.y7c{bottom:287.603250px;}
.y10e{bottom:292.927800px;}
.y66{bottom:294.046200px;}
.y59{bottom:294.230400px;}
.y44{bottom:296.107200px;}
.ya5{bottom:298.171650px;}
.yd4{bottom:298.171800px;}
.y7b{bottom:302.003250px;}
.y17{bottom:305.159850px;}
.y6f{bottom:310.507200px;}
.y10d{bottom:310.927800px;}
.y65{bottom:312.046200px;}
.y58{bottom:312.230400px;}
.y43{bottom:314.759100px;}
.ya4{bottom:316.171650px;}
.ycf{bottom:316.171800px;}
.y7a{bottom:316.403250px;}
.y6e{bottom:324.907200px;}
.y10c{bottom:328.927800px;}
.y42{bottom:329.159100px;}
.y64{bottom:330.046200px;}
.y57{bottom:330.230400px;}
.y79{bottom:330.803250px;}
.ya3{bottom:334.171650px;}
.yce{bottom:334.171800px;}
.y6d{bottom:343.559100px;}
.y78{bottom:345.203250px;}
.y10b{bottom:346.927800px;}
.y41{bottom:347.811150px;}
.y63{bottom:348.046200px;}
.y56{bottom:348.230400px;}
.ya2{bottom:352.171650px;}
.ycd{bottom:352.171800px;}
.y16{bottom:359.159850px;}
.y6c{bottom:362.211000px;}
.y40{bottom:362.211150px;}
.y77{bottom:363.855150px;}
.y10a{bottom:364.927800px;}
.y62{bottom:366.046200px;}
.y55{bottom:366.230400px;}
.ya1{bottom:370.171650px;}
.ycc{bottom:370.171800px;}
.y15{bottom:377.159850px;}
.ydd{bottom:378.986250px;}
.y3f{bottom:380.863050px;}
.y109{bottom:382.927800px;}
.y61{bottom:384.046200px;}
.y54{bottom:384.230400px;}
.ya0{bottom:388.171650px;}
.ycb{bottom:388.171800px;}
.y14{bottom:393.359850px;}
.y108{bottom:400.927800px;}
.y60{bottom:402.046200px;}
.yf0{bottom:402.230400px;}
.y9f{bottom:406.171650px;}
.yca{bottom:406.171800px;}
.y13{bottom:409.559850px;}
.y53{bottom:414.986250px;}
.y107{bottom:418.927800px;}
.y3e{bottom:420.046200px;}
.yef{bottom:420.230400px;}
.y9e{bottom:424.171650px;}
.yc9{bottom:424.171800px;}
.y12{bottom:425.759850px;}
.y106{bottom:436.927800px;}
.y3d{bottom:438.046200px;}
.yee{bottom:438.230400px;}
.y9d{bottom:442.171650px;}
.yc8{bottom:442.171800px;}
.y105{bottom:454.927800px;}
.y3c{bottom:456.046200px;}
.yed{bottom:456.230400px;}
.y11{bottom:458.159850px;}
.y9c{bottom:460.171650px;}
.yc7{bottom:460.171800px;}
.y104{bottom:472.927800px;}
.y3b{bottom:474.046200px;}
.yec{bottom:474.230400px;}
.y10{bottom:476.159850px;}
.y9b{bottom:478.171650px;}
.yc6{bottom:478.171800px;}
.y103{bottom:490.927800px;}
.y3a{bottom:492.046200px;}
.yeb{bottom:492.230400px;}
.yf{bottom:492.359850px;}
.y9a{bottom:496.171650px;}
.yc5{bottom:496.171800px;}
.ye{bottom:508.559850px;}
.y102{bottom:508.927800px;}
.y39{bottom:510.046200px;}
.yea{bottom:510.230400px;}
.y99{bottom:514.171650px;}
.yc4{bottom:514.171800px;}
.yd{bottom:524.759850px;}
.y101{bottom:526.927800px;}
.y38{bottom:528.046200px;}
.ye9{bottom:528.230400px;}
.y98{bottom:532.171650px;}
.yc3{bottom:532.171800px;}
.y100{bottom:544.927800px;}
.y37{bottom:546.046200px;}
.ye8{bottom:546.230400px;}
.y97{bottom:550.171650px;}
.yc2{bottom:550.171800px;}
.yff{bottom:562.927800px;}
.y36{bottom:564.046200px;}
.ye7{bottom:564.230400px;}
.y96{bottom:568.171650px;}
.yc1{bottom:568.171800px;}
.yc{bottom:575.159850px;}
.yfe{bottom:580.927800px;}
.y35{bottom:582.046200px;}
.ye6{bottom:582.230400px;}
.y95{bottom:586.171650px;}
.yc0{bottom:586.171800px;}
.yb{bottom:591.359850px;}
.yfd{bottom:598.927800px;}
.y34{bottom:600.046200px;}
.ye5{bottom:600.230400px;}
.y94{bottom:604.171650px;}
.ybf{bottom:604.171800px;}
.yfc{bottom:616.927800px;}
.y33{bottom:618.046200px;}
.ye4{bottom:618.230400px;}
.y93{bottom:622.171650px;}
.ybe{bottom:622.171800px;}
.ya{bottom:625.559850px;}
.yfb{bottom:634.927800px;}
.y32{bottom:636.046200px;}
.ye3{bottom:636.230400px;}
.y92{bottom:640.171650px;}
.ybd{bottom:640.171800px;}
.y9{bottom:647.159850px;}
.yfa{bottom:652.927800px;}
.y31{bottom:654.046200px;}
.ye2{bottom:654.230400px;}
.y91{bottom:658.171650px;}
.ybc{bottom:658.171800px;}
.yf9{bottom:670.927800px;}
.y30{bottom:672.046200px;}
.ye1{bottom:672.230400px;}
.y90{bottom:676.171650px;}
.ybb{bottom:676.171800px;}
.yf8{bottom:688.927800px;}
.y2f{bottom:690.046200px;}
.y8f{bottom:694.171650px;}
.yba{bottom:694.171800px;}
.ye0{bottom:702.986250px;}
.yf7{bottom:706.927800px;}
.y2e{bottom:708.046200px;}
.y8{bottom:708.359850px;}
.y8e{bottom:712.171650px;}
.yb9{bottom:712.171800px;}
.yf6{bottom:724.927800px;}
.y2d{bottom:726.046200px;}
.y8d{bottom:730.171650px;}
.yb8{bottom:730.171800px;}
.y7{bottom:734.863800px;}
.yf5{bottom:742.927800px;}
.y2c{bottom:744.046200px;}
.y8c{bottom:748.171650px;}
.yb7{bottom:748.171800px;}
.y6{bottom:760.063800px;}
.yf4{bottom:760.927800px;}
.y2b{bottom:762.046200px;}
.y8b{bottom:766.171650px;}
.yb6{bottom:766.171800px;}
.yf3{bottom:778.927800px;}
.y2a{bottom:780.046200px;}
.y8a{bottom:784.171650px;}
.yb5{bottom:784.171800px;}
.y29{bottom:798.046200px;}
.y89{bottom:802.171650px;}
.yb4{bottom:802.171800px;}
.yf2{bottom:814.927800px;}
.y28{bottom:816.046200px;}
.y88{bottom:820.171650px;}
.yb3{bottom:820.171800px;}
.y27{bottom:834.046200px;}
.y87{bottom:850.927650px;}
.yb2{bottom:850.927800px;}
.y26{bottom:852.046200px;}
.y5{bottom:854.517000px;}
.y4{bottom:870.717150px;}
.y3{bottom:886.917150px;}
.y23{bottom:893.550150px;}
.y51{bottom:893.556750px;}
.y2{bottom:903.117150px;}
.hb{height:39.840820px;}
.he{height:44.267578px;}
.h9{height:46.945312px;}
.ha{height:47.085938px;}
.hc{height:48.887695px;}
.h3{height:52.813477px;}
.h7{height:52.971680px;}
.hd{height:58.154297px;}
.h5{height:58.681641px;}
.h8{height:58.857422px;}
.h2{height:64.549805px;}
.h6{height:70.417969px;}
.h4{height:82.154297px;}
.h1{height:948.000000px;}
.h0{height:948.189000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x6{left:76.535400px;}
.xb{left:114.803100px;}
.x7{left:127.559100px;}
.xc{left:166.783200px;}
.x8{left:247.407150px;}
.xa{left:303.915450px;}
.x1{left:319.009950px;}
.x4{left:380.905050px;}
.x3{left:382.671600px;}
.x5{left:402.130650px;}
.x2{left:415.261500px;}
@media print{
.v3{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:-2.986667pt;}
.ls15{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.621867pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.310933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004373pt;}
.ls7{letter-spacing:0.004907pt;}
.ls0{letter-spacing:0.005461pt;}
.ls16{letter-spacing:0.026133pt;}
.ls11{letter-spacing:0.310933pt;}
.ls2{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.532800pt;}
.lsf{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.621867pt;}
.ls1{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.296533pt;}
.ls17{letter-spacing:2.988800pt;}
.ws56{word-spacing:-15.893333pt;}
.ws54{word-spacing:-15.360000pt;}
.ws10{word-spacing:-14.826667pt;}
.wsbe{word-spacing:-14.293333pt;}
.ws82{word-spacing:-13.760000pt;}
.ws0{word-spacing:-12.288000pt;}
.ws78{word-spacing:-12.106667pt;}
.ws2d{word-spacing:-11.861333pt;}
.ws71{word-spacing:-11.008000pt;}
.ws22{word-spacing:-9.265813pt;}
.ws55{word-spacing:-8.954880pt;}
.wsf{word-spacing:-8.643947pt;}
.ws64{word-spacing:-8.333013pt;}
.ws21{word-spacing:-8.022080pt;}
.wsc1{word-spacing:-6.613333pt;}
.wsc2{word-spacing:-3.733333pt;}
.wsbf{word-spacing:-3.200000pt;}
.wsaf{word-spacing:-2.933333pt;}
.wsa4{word-spacing:-2.773333pt;}
.ws7f{word-spacing:-2.720000pt;}
.ws63{word-spacing:-2.613333pt;}
.ws8e{word-spacing:-2.506667pt;}
.ws39{word-spacing:-2.400000pt;}
.ws52{word-spacing:-2.346667pt;}
.wsc5{word-spacing:-2.293333pt;}
.ws69{word-spacing:-2.240000pt;}
.ws38{word-spacing:-2.186667pt;}
.ws2a{word-spacing:-2.133333pt;}
.ws5d{word-spacing:-2.080000pt;}
.ws7d{word-spacing:-1.973333pt;}
.wsb6{word-spacing:-1.920000pt;}
.ws86{word-spacing:-1.866667pt;}
.ws29{word-spacing:-1.813333pt;}
.wsa0{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.653333pt;}
.wsa8{word-spacing:-1.546667pt;}
.ws8c{word-spacing:-1.493333pt;}
.ws8d{word-spacing:-1.450667pt;}
.ws51{word-spacing:-1.440000pt;}
.ws33{word-spacing:-1.386667pt;}
.wsbc{word-spacing:-1.333333pt;}
.ws23{word-spacing:-1.280000pt;}
.wsa3{word-spacing:-1.226667pt;}
.ws30{word-spacing:-1.173333pt;}
.ws45{word-spacing:-1.109333pt;}
.ws28{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-0.981333pt;}
.ws5{word-spacing:-0.960000pt;}
.ws62{word-spacing:-0.906667pt;}
.ws77{word-spacing:-0.896000pt;}
.ws20{word-spacing:-0.810667pt;}
.ws9e{word-spacing:-0.800000pt;}
.wsb7{word-spacing:-0.768000pt;}
.ws12{word-spacing:-0.746667pt;}
.ws13{word-spacing:-0.693333pt;}
.ws8f{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.533333pt;}
.ws35{word-spacing:-0.480000pt;}
.wsb{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.373333pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.266667pt;}
.ws7{word-spacing:-0.213333pt;}
.wsba{word-spacing:-0.128000pt;}
.wsa5{word-spacing:-0.106667pt;}
.ws79{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.106667pt;}
.ws4{word-spacing:0.144000pt;}
.ws95{word-spacing:0.160000pt;}
.wsb4{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.wsad{word-spacing:0.341333pt;}
.ws60{word-spacing:0.373333pt;}
.ws9{word-spacing:0.426667pt;}
.ws41{word-spacing:0.480000pt;}
.ws6{word-spacing:0.533333pt;}
.wsa9{word-spacing:0.586667pt;}
.ws9f{word-spacing:0.800000pt;}
.ws76{word-spacing:0.853333pt;}
.ws3f{word-spacing:0.906667pt;}
.ws2{word-spacing:0.960000pt;}
.ws24{word-spacing:1.013333pt;}
.ws11{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.109333pt;}
.ws34{word-spacing:1.120000pt;}
.ws32{word-spacing:1.226667pt;}
.ws48{word-spacing:1.237333pt;}
.ws40{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.333333pt;}
.ws72{word-spacing:1.386667pt;}
.wsbd{word-spacing:1.440000pt;}
.wsa6{word-spacing:1.493333pt;}
.wsb0{word-spacing:1.546667pt;}
.ws80{word-spacing:1.600000pt;}
.ws89{word-spacing:1.621333pt;}
.ws96{word-spacing:1.653333pt;}
.ws7a{word-spacing:1.706667pt;}
.ws47{word-spacing:1.749333pt;}
.ws75{word-spacing:1.760000pt;}
.ws1c{word-spacing:1.792000pt;}
.ws81{word-spacing:1.813333pt;}
.ws43{word-spacing:1.866667pt;}
.ws5c{word-spacing:1.920000pt;}
.ws19{word-spacing:1.973333pt;}
.ws7b{word-spacing:2.026667pt;}
.ws87{word-spacing:2.133333pt;}
.ws7c{word-spacing:2.186667pt;}
.ws14{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.453333pt;}
.ws98{word-spacing:2.474667pt;}
.ws8a{word-spacing:2.602667pt;}
.ws16{word-spacing:2.666667pt;}
.ws49{word-spacing:2.730667pt;}
.ws37{word-spacing:2.826667pt;}
.ws68{word-spacing:2.880000pt;}
.ws91{word-spacing:2.933333pt;}
.wsd{word-spacing:2.944000pt;}
.ws4e{word-spacing:3.253333pt;}
.wsc6{word-spacing:3.306667pt;}
.wsb1{word-spacing:3.360000pt;}
.ws2b{word-spacing:3.370667pt;}
.ws3b{word-spacing:3.413333pt;}
.ws99{word-spacing:3.498667pt;}
.ws6c{word-spacing:3.584000pt;}
.ws17{word-spacing:3.626667pt;}
.ws4d{word-spacing:3.733333pt;}
.ws65{word-spacing:3.786667pt;}
.ws97{word-spacing:3.840000pt;}
.ws5a{word-spacing:3.893333pt;}
.wsae{word-spacing:3.946667pt;}
.wsa1{word-spacing:4.000000pt;}
.ws94{word-spacing:4.053333pt;}
.wsb9{word-spacing:4.106667pt;}
.wsaa{word-spacing:4.160000pt;}
.ws4c{word-spacing:4.213333pt;}
.ws4b{word-spacing:4.266667pt;}
.ws2e{word-spacing:4.373333pt;}
.wsa{word-spacing:4.394667pt;}
.ws84{word-spacing:4.426667pt;}
.wsac{word-spacing:4.608000pt;}
.ws5e{word-spacing:4.640000pt;}
.wsc3{word-spacing:4.693333pt;}
.wsa2{word-spacing:4.746667pt;}
.ws31{word-spacing:4.853333pt;}
.ws6e{word-spacing:4.864000pt;}
.ws46{word-spacing:4.906667pt;}
.wsb8{word-spacing:4.960000pt;}
.ws6b{word-spacing:4.992000pt;}
.ws85{word-spacing:5.013333pt;}
.wsb5{word-spacing:5.173333pt;}
.ws3d{word-spacing:5.280000pt;}
.ws58{word-spacing:5.386667pt;}
.ws42{word-spacing:5.440000pt;}
.ws1a{word-spacing:5.546667pt;}
.ws88{word-spacing:5.653333pt;}
.wsa7{word-spacing:5.706667pt;}
.ws1f{word-spacing:5.760000pt;}
.ws6f{word-spacing:5.802667pt;}
.ws3c{word-spacing:5.845333pt;}
.ws59{word-spacing:5.920000pt;}
.wsb3{word-spacing:5.973333pt;}
.ws93{word-spacing:6.133333pt;}
.ws4a{word-spacing:6.186667pt;}
.ws70{word-spacing:6.272000pt;}
.ws90{word-spacing:6.293333pt;}
.ws5f{word-spacing:6.506667pt;}
.ws9d{word-spacing:6.613333pt;}
.ws15{word-spacing:6.666667pt;}
.wsc{word-spacing:6.826667pt;}
.ws9a{word-spacing:6.997333pt;}
.ws27{word-spacing:7.146667pt;}
.wsab{word-spacing:7.253333pt;}
.ws25{word-spacing:7.360000pt;}
.ws67{word-spacing:7.413333pt;}
.ws61{word-spacing:7.466667pt;}
.ws73{word-spacing:7.626667pt;}
.ws74{word-spacing:7.680000pt;}
.wsb2{word-spacing:7.840000pt;}
.ws92{word-spacing:7.893333pt;}
.ws7e{word-spacing:8.000000pt;}
.ws44{word-spacing:8.053333pt;}
.ws8b{word-spacing:8.362667pt;}
.ws9b{word-spacing:8.693333pt;}
.ws3{word-spacing:8.928000pt;}
.ws57{word-spacing:9.173333pt;}
.ws2c{word-spacing:9.429333pt;}
.ws8{word-spacing:9.472000pt;}
.ws6d{word-spacing:10.026667pt;}
.ws83{word-spacing:10.133333pt;}
.ws26{word-spacing:10.453333pt;}
.ws6a{word-spacing:10.794667pt;}
.ws36{word-spacing:11.466667pt;}
.wsc7{word-spacing:12.053333pt;}
.ws1e{word-spacing:13.738667pt;}
.wsbb{word-spacing:14.560000pt;}
.wsc4{word-spacing:15.200000pt;}
.wsc0{word-spacing:16.053333pt;}
._13{margin-left:-19.840000pt;}
._10{margin-left:-14.547200pt;}
._0{margin-left:-13.334400pt;}
._11{margin-left:-9.824533pt;}
._16{margin-left:-7.226133pt;}
._17{margin-left:-5.141333pt;}
._12{margin-left:-4.016000pt;}
._9{margin-left:-3.112533pt;}
._5{margin-left:-2.103467pt;}
._7{margin-left:-1.160533pt;}
._2{width:0.969600pt;}
._8{width:2.049067pt;}
._1{width:2.979200pt;}
._4{width:4.430400pt;}
._b{width:5.574933pt;}
._e{width:7.127467pt;}
._d{width:8.054933pt;}
._3{width:9.225600pt;}
._a{width:10.353067pt;}
._18{width:12.024533pt;}
._c{width:13.222933pt;}
._6{width:14.366400pt;}
._15{width:16.010667pt;}
._19{width:17.086933pt;}
._f{width:17.987200pt;}
._14{width:21.994667pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.343200pt;}
.y52{bottom:30.981067pt;}
.y25{bottom:46.260533pt;}
.y24{bottom:60.660533pt;}
.yaf{bottom:94.488000pt;}
.y22{bottom:94.488133pt;}
.y50{bottom:94.488267pt;}
.y118{bottom:100.380267pt;}
.yb1{bottom:101.374400pt;}
.yae{bottom:107.288000pt;}
.y21{bottom:107.288133pt;}
.y72{bottom:107.288267pt;}
.y4f{bottom:111.067733pt;}
.y117{bottom:116.380267pt;}
.yb0{bottom:117.374400pt;}
.y20{bottom:120.088133pt;}
.y86{bottom:120.088267pt;}
.yad{bottom:123.867600pt;}
.y4e{bottom:123.867733pt;}
.y76{bottom:127.647333pt;}
.y116{bottom:132.380267pt;}
.y1f{bottom:132.888133pt;}
.y85{bottom:132.888267pt;}
.y75{bottom:133.374400pt;}
.yac{bottom:136.667600pt;}
.y4d{bottom:136.667733pt;}
.ydc{bottom:137.041600pt;}
.y5f{bottom:140.447333pt;}
.y1e{bottom:145.688133pt;}
.y84{bottom:145.688267pt;}
.y115{bottom:148.380267pt;}
.y74{bottom:149.374400pt;}
.y4c{bottom:149.467733pt;}
.ydb{bottom:153.041600pt;}
.y5e{bottom:153.247333pt;}
.y1d{bottom:158.488133pt;}
.y83{bottom:158.488267pt;}
.yd3{bottom:162.267733pt;}
.y114{bottom:164.380267pt;}
.y73{bottom:165.374400pt;}
.yf1{bottom:165.538133pt;}
.y4b{bottom:166.047333pt;}
.yab{bottom:169.041467pt;}
.yda{bottom:169.041600pt;}
.y5d{bottom:169.826800pt;}
.y1c{bottom:171.288133pt;}
.y82{bottom:171.288267pt;}
.yd2{bottom:175.067733pt;}
.y4a{bottom:178.847333pt;}
.y113{bottom:180.380267pt;}
.y6b{bottom:181.374400pt;}
.ydf{bottom:181.538133pt;}
.y1b{bottom:184.088133pt;}
.y81{bottom:184.088267pt;}
.yaa{bottom:185.041467pt;}
.yd9{bottom:185.041600pt;}
.yd1{bottom:187.867733pt;}
.y71{bottom:191.647333pt;}
.y49{bottom:195.426800pt;}
.y112{bottom:196.380267pt;}
.y1a{bottom:196.888133pt;}
.y80{bottom:196.888267pt;}
.y6a{bottom:197.374400pt;}
.yde{bottom:197.538133pt;}
.yd0{bottom:200.667733pt;}
.ya9{bottom:201.041467pt;}
.yd8{bottom:201.041600pt;}
.y48{bottom:208.226800pt;}
.y111{bottom:212.380267pt;}
.y69{bottom:213.374400pt;}
.y7f{bottom:213.467733pt;}
.y5c{bottom:213.538133pt;}
.ya8{bottom:217.041467pt;}
.yd7{bottom:217.041600pt;}
.y47{bottom:221.026800pt;}
.y7e{bottom:226.267733pt;}
.y110{bottom:228.380267pt;}
.y68{bottom:229.374400pt;}
.y5b{bottom:229.538133pt;}
.ya7{bottom:233.041467pt;}
.yd6{bottom:233.041600pt;}
.y46{bottom:233.826800pt;}
.y7d{bottom:239.067733pt;}
.y19{bottom:239.253200pt;}
.y10f{bottom:244.380267pt;}
.y67{bottom:245.374400pt;}
.y5a{bottom:245.538133pt;}
.y70{bottom:246.626800pt;}
.ya6{bottom:249.041467pt;}
.yd5{bottom:249.041600pt;}
.y45{bottom:250.406400pt;}
.y18{bottom:255.253200pt;}
.y7c{bottom:255.647333pt;}
.y10e{bottom:260.380267pt;}
.y66{bottom:261.374400pt;}
.y59{bottom:261.538133pt;}
.y44{bottom:263.206400pt;}
.ya5{bottom:265.041467pt;}
.yd4{bottom:265.041600pt;}
.y7b{bottom:268.447333pt;}
.y17{bottom:271.253200pt;}
.y6f{bottom:276.006400pt;}
.y10d{bottom:276.380267pt;}
.y65{bottom:277.374400pt;}
.y58{bottom:277.538133pt;}
.y43{bottom:279.785867pt;}
.ya4{bottom:281.041467pt;}
.ycf{bottom:281.041600pt;}
.y7a{bottom:281.247333pt;}
.y6e{bottom:288.806400pt;}
.y10c{bottom:292.380267pt;}
.y42{bottom:292.585867pt;}
.y64{bottom:293.374400pt;}
.y57{bottom:293.538133pt;}
.y79{bottom:294.047333pt;}
.ya3{bottom:297.041467pt;}
.yce{bottom:297.041600pt;}
.y6d{bottom:305.385867pt;}
.y78{bottom:306.847333pt;}
.y10b{bottom:308.380267pt;}
.y41{bottom:309.165467pt;}
.y63{bottom:309.374400pt;}
.y56{bottom:309.538133pt;}
.ya2{bottom:313.041467pt;}
.ycd{bottom:313.041600pt;}
.y16{bottom:319.253200pt;}
.y6c{bottom:321.965333pt;}
.y40{bottom:321.965467pt;}
.y77{bottom:323.426800pt;}
.y10a{bottom:324.380267pt;}
.y62{bottom:325.374400pt;}
.y55{bottom:325.538133pt;}
.ya1{bottom:329.041467pt;}
.ycc{bottom:329.041600pt;}
.y15{bottom:335.253200pt;}
.ydd{bottom:336.876667pt;}
.y3f{bottom:338.544933pt;}
.y109{bottom:340.380267pt;}
.y61{bottom:341.374400pt;}
.y54{bottom:341.538133pt;}
.ya0{bottom:345.041467pt;}
.ycb{bottom:345.041600pt;}
.y14{bottom:349.653200pt;}
.y108{bottom:356.380267pt;}
.y60{bottom:357.374400pt;}
.yf0{bottom:357.538133pt;}
.y9f{bottom:361.041467pt;}
.yca{bottom:361.041600pt;}
.y13{bottom:364.053200pt;}
.y53{bottom:368.876667pt;}
.y107{bottom:372.380267pt;}
.y3e{bottom:373.374400pt;}
.yef{bottom:373.538133pt;}
.y9e{bottom:377.041467pt;}
.yc9{bottom:377.041600pt;}
.y12{bottom:378.453200pt;}
.y106{bottom:388.380267pt;}
.y3d{bottom:389.374400pt;}
.yee{bottom:389.538133pt;}
.y9d{bottom:393.041467pt;}
.yc8{bottom:393.041600pt;}
.y105{bottom:404.380267pt;}
.y3c{bottom:405.374400pt;}
.yed{bottom:405.538133pt;}
.y11{bottom:407.253200pt;}
.y9c{bottom:409.041467pt;}
.yc7{bottom:409.041600pt;}
.y104{bottom:420.380267pt;}
.y3b{bottom:421.374400pt;}
.yec{bottom:421.538133pt;}
.y10{bottom:423.253200pt;}
.y9b{bottom:425.041467pt;}
.yc6{bottom:425.041600pt;}
.y103{bottom:436.380267pt;}
.y3a{bottom:437.374400pt;}
.yeb{bottom:437.538133pt;}
.yf{bottom:437.653200pt;}
.y9a{bottom:441.041467pt;}
.yc5{bottom:441.041600pt;}
.ye{bottom:452.053200pt;}
.y102{bottom:452.380267pt;}
.y39{bottom:453.374400pt;}
.yea{bottom:453.538133pt;}
.y99{bottom:457.041467pt;}
.yc4{bottom:457.041600pt;}
.yd{bottom:466.453200pt;}
.y101{bottom:468.380267pt;}
.y38{bottom:469.374400pt;}
.ye9{bottom:469.538133pt;}
.y98{bottom:473.041467pt;}
.yc3{bottom:473.041600pt;}
.y100{bottom:484.380267pt;}
.y37{bottom:485.374400pt;}
.ye8{bottom:485.538133pt;}
.y97{bottom:489.041467pt;}
.yc2{bottom:489.041600pt;}
.yff{bottom:500.380267pt;}
.y36{bottom:501.374400pt;}
.ye7{bottom:501.538133pt;}
.y96{bottom:505.041467pt;}
.yc1{bottom:505.041600pt;}
.yc{bottom:511.253200pt;}
.yfe{bottom:516.380267pt;}
.y35{bottom:517.374400pt;}
.ye6{bottom:517.538133pt;}
.y95{bottom:521.041467pt;}
.yc0{bottom:521.041600pt;}
.yb{bottom:525.653200pt;}
.yfd{bottom:532.380267pt;}
.y34{bottom:533.374400pt;}
.ye5{bottom:533.538133pt;}
.y94{bottom:537.041467pt;}
.ybf{bottom:537.041600pt;}
.yfc{bottom:548.380267pt;}
.y33{bottom:549.374400pt;}
.ye4{bottom:549.538133pt;}
.y93{bottom:553.041467pt;}
.ybe{bottom:553.041600pt;}
.ya{bottom:556.053200pt;}
.yfb{bottom:564.380267pt;}
.y32{bottom:565.374400pt;}
.ye3{bottom:565.538133pt;}
.y92{bottom:569.041467pt;}
.ybd{bottom:569.041600pt;}
.y9{bottom:575.253200pt;}
.yfa{bottom:580.380267pt;}
.y31{bottom:581.374400pt;}
.ye2{bottom:581.538133pt;}
.y91{bottom:585.041467pt;}
.ybc{bottom:585.041600pt;}
.yf9{bottom:596.380267pt;}
.y30{bottom:597.374400pt;}
.ye1{bottom:597.538133pt;}
.y90{bottom:601.041467pt;}
.ybb{bottom:601.041600pt;}
.yf8{bottom:612.380267pt;}
.y2f{bottom:613.374400pt;}
.y8f{bottom:617.041467pt;}
.yba{bottom:617.041600pt;}
.ye0{bottom:624.876667pt;}
.yf7{bottom:628.380267pt;}
.y2e{bottom:629.374400pt;}
.y8{bottom:629.653200pt;}
.y8e{bottom:633.041467pt;}
.yb9{bottom:633.041600pt;}
.yf6{bottom:644.380267pt;}
.y2d{bottom:645.374400pt;}
.y8d{bottom:649.041467pt;}
.yb8{bottom:649.041600pt;}
.y7{bottom:653.212267pt;}
.yf5{bottom:660.380267pt;}
.y2c{bottom:661.374400pt;}
.y8c{bottom:665.041467pt;}
.yb7{bottom:665.041600pt;}
.y6{bottom:675.612267pt;}
.yf4{bottom:676.380267pt;}
.y2b{bottom:677.374400pt;}
.y8b{bottom:681.041467pt;}
.yb6{bottom:681.041600pt;}
.yf3{bottom:692.380267pt;}
.y2a{bottom:693.374400pt;}
.y8a{bottom:697.041467pt;}
.yb5{bottom:697.041600pt;}
.y29{bottom:709.374400pt;}
.y89{bottom:713.041467pt;}
.yb4{bottom:713.041600pt;}
.yf2{bottom:724.380267pt;}
.y28{bottom:725.374400pt;}
.y88{bottom:729.041467pt;}
.yb3{bottom:729.041600pt;}
.y27{bottom:741.374400pt;}
.y87{bottom:756.380133pt;}
.yb2{bottom:756.380267pt;}
.y26{bottom:757.374400pt;}
.y5{bottom:759.570667pt;}
.y4{bottom:773.970800pt;}
.y3{bottom:788.370800pt;}
.y23{bottom:794.266800pt;}
.y51{bottom:794.272667pt;}
.y2{bottom:802.770800pt;}
.hb{height:35.414062pt;}
.he{height:39.348958pt;}
.h9{height:41.729167pt;}
.ha{height:41.854167pt;}
.hc{height:43.455729pt;}
.h3{height:46.945312pt;}
.h7{height:47.085938pt;}
.hd{height:51.692708pt;}
.h5{height:52.161458pt;}
.h8{height:52.317708pt;}
.h2{height:57.377604pt;}
.h6{height:62.593750pt;}
.h4{height:73.026042pt;}
.h1{height:842.666667pt;}
.h0{height:842.834667pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x6{left:68.031467pt;}
.xb{left:102.047200pt;}
.x7{left:113.385867pt;}
.xc{left:148.251733pt;}
.x8{left:219.917467pt;}
.xa{left:270.147067pt;}
.x1{left:283.564400pt;}
.x4{left:338.582267pt;}
.x3{left:340.152533pt;}
.x5{left:357.449467pt;}
.x2{left:369.121333pt;}
}

