
    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_14df757bda8551f9727cf037.woff')format("woff");}.ff1{font-family:ff1;line-height:1.177000;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_d523f8219ba032b2b8c0913d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.183000;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_454a92e83db266643b0c574f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767000;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_b827c21d6eedad5f0f869bb6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.834000;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_19d3a7797bbf852aa684a2c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.177000;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_50034246574e0754b70da88a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.834000;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_e365ed8e891ef16148cb7f87.woff')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_e3e2289318aa27d7359790a7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.767000;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_4a08795859c4370d32a632f9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986000;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_14df757bda8551f9727cf037.woff')format("woff");}.ffa{font-family:ffa;line-height:1.177000;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_d523f8219ba032b2b8c0913d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.183000;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_454a92e83db266643b0c574f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.767000;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_b827c21d6eedad5f0f869bb6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.834000;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_c04818c0825175dd2aa7223a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.834000;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:fff;src:url('chunks/assets/font_14df757bda8551f9727cf037.woff')format("woff");}.fff{font-family:fff;line-height:1.177000;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:ff10;src:url('chunks/assets/font_d523f8219ba032b2b8c0913d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.183000;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:ff11;src:url('chunks/assets/font_454a92e83db266643b0c574f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.767000;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:ff12;src:url('chunks/assets/font_b827c21d6eedad5f0f869bb6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.834000;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:ff13;src:url('chunks/assets/font_b181804cf20198aa15bc3b6e.woff')format("woff");}.ff13{font-family:ff13;line-height:0.837000;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:ff14;src:url('chunks/assets/font_42939cde2f3fd10690cb50c6.woff')format("woff");}.ff14{font-family:ff14;line-height:1.201000;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:ff15;src:url('chunks/assets/font_9e0786b70d0565dae94088d6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.834000;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;}
.m1{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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:-16.983000px;}
.v4{vertical-align:-3.414600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.979000px;}
.v5{vertical-align:60.000000px;}
.v1{vertical-align:144.000000px;}
.lsa{letter-spacing:-2.700000px;}
.lse{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.945000px;}
.ls2{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.315000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.315000px;}
.ls3{letter-spacing:0.630000px;}
.lsb{letter-spacing:1.080000px;}
.lsd{letter-spacing:9.717000px;}
.ls0{letter-spacing:12.750000px;}
.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;}
}
.ws14{word-spacing:-67.105200px;}
.ws5f{word-spacing:-16.380000px;}
.wsb1{word-spacing:-16.065000px;}
.ws15{word-spacing:-15.750000px;}
.wsb0{word-spacing:-15.435000px;}
.wsb2{word-spacing:-15.300000px;}
.ws3b{word-spacing:-15.120000px;}
.ws9d{word-spacing:-15.000000px;}
.wsca{word-spacing:-14.805000px;}
.ws114{word-spacing:-14.580000px;}
.wsc9{word-spacing:-14.490000px;}
.ws6{word-spacing:-14.250000px;}
.ws3{word-spacing:-13.500000px;}
.ws115{word-spacing:-13.122000px;}
.wsf6{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.750000px;}
.ws12d{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.000000px;}
.ws109{word-spacing:-10.800000px;}
.ws39{word-spacing:-9.182250px;}
.ws1{word-spacing:-8.925000px;}
.ws3c{word-spacing:-7.433250px;}
.ws117{word-spacing:-4.104000px;}
.wsd2{word-spacing:-3.654000px;}
.ws130{word-spacing:-3.618000px;}
.ws129{word-spacing:-3.402000px;}
.ws45{word-spacing:-3.087000px;}
.ws60{word-spacing:-3.024000px;}
.ws59{word-spacing:-2.961000px;}
.ws52{word-spacing:-2.835000px;}
.ws4d{word-spacing:-2.772000px;}
.ws84{word-spacing:-2.709000px;}
.ws73{word-spacing:-2.646000px;}
.wsc3{word-spacing:-2.622000px;}
.wsec{word-spacing:-2.592000px;}
.ws6e{word-spacing:-2.583000px;}
.ws83{word-spacing:-2.520000px;}
.ws7f{word-spacing:-2.457000px;}
.ws135{word-spacing:-2.430000px;}
.ws9c{word-spacing:-2.397000px;}
.ws86{word-spacing:-2.394000px;}
.ws10f{word-spacing:-2.376000px;}
.ws9f{word-spacing:-2.331000px;}
.ws42{word-spacing:-2.268000px;}
.ws18{word-spacing:-2.223000px;}
.ws11b{word-spacing:-2.214000px;}
.ws4e{word-spacing:-2.205000px;}
.ws69{word-spacing:-2.142000px;}
.ws22{word-spacing:-2.109000px;}
.ws34{word-spacing:-2.079000px;}
.ws11f{word-spacing:-2.052000px;}
.ws106{word-spacing:-2.016000px;}
.ws121{word-spacing:-1.998000px;}
.wsa4{word-spacing:-1.980000px;}
.ws85{word-spacing:-1.953000px;}
.ws25{word-spacing:-1.890000px;}
.ws128{word-spacing:-1.836000px;}
.ws7a{word-spacing:-1.827000px;}
.ws76{word-spacing:-1.764000px;}
.ws6f{word-spacing:-1.701000px;}
.wsb6{word-spacing:-1.638000px;}
.ws78{word-spacing:-1.575000px;}
.ws2f{word-spacing:-1.512000px;}
.ws43{word-spacing:-1.449000px;}
.ws110{word-spacing:-1.404000px;}
.ws81{word-spacing:-1.386000px;}
.ws10d{word-spacing:-1.350000px;}
.wsbb{word-spacing:-1.323000px;}
.wsde{word-spacing:-1.296000px;}
.ws97{word-spacing:-1.260000px;}
.wsfe{word-spacing:-1.242000px;}
.ws5d{word-spacing:-1.224000px;}
.ws38{word-spacing:-1.197000px;}
.wsf{word-spacing:-1.140000px;}
.ws7c{word-spacing:-1.134000px;}
.ws88{word-spacing:-1.122000px;}
.wsfc{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.071000px;}
.wsc1{word-spacing:-1.008000px;}
.ws127{word-spacing:-0.972000px;}
.ws1c{word-spacing:-0.969000px;}
.ws64{word-spacing:-0.945000px;}
.ws44{word-spacing:-0.882000px;}
.wsf8{word-spacing:-0.810000px;}
.ws8{word-spacing:-0.798000px;}
.ws49{word-spacing:-0.756000px;}
.ws4c{word-spacing:-0.693000px;}
.ws10e{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.630000px;}
.ws96{word-spacing:-0.567000px;}
.ws5c{word-spacing:-0.561000px;}
.wsdb{word-spacing:-0.540000px;}
.ws62{word-spacing:-0.504000px;}
.ws119{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.456000px;}
.ws90{word-spacing:-0.441000px;}
.ws2e{word-spacing:-0.378000px;}
.wsb9{word-spacing:-0.360000px;}
.ws80{word-spacing:-0.315000px;}
.ws12a{word-spacing:-0.270000px;}
.wsb3{word-spacing:-0.252000px;}
.ws12b{word-spacing:-0.216000px;}
.ws6a{word-spacing:-0.189000px;}
.ws11e{word-spacing:-0.162000px;}
.wscf{word-spacing:-0.126000px;}
.ws4{word-spacing:-0.067200px;}
.ws13{word-spacing:-0.066000px;}
.ws3a{word-spacing:-0.063000px;}
.ws108{word-spacing:-0.054000px;}
.ws2{word-spacing:-0.051000px;}
.ws113{word-spacing:-0.037800px;}
.ws7{word-spacing:0.000000px;}
.ws11d{word-spacing:0.054000px;}
.wsa1{word-spacing:0.063000px;}
.wsc{word-spacing:0.114000px;}
.ws74{word-spacing:0.126000px;}
.ws126{word-spacing:0.216000px;}
.ws95{word-spacing:0.252000px;}
.ws99{word-spacing:0.255000px;}
.ws33{word-spacing:0.315000px;}
.ws12c{word-spacing:0.324000px;}
.ws9b{word-spacing:0.357000px;}
.ws4f{word-spacing:0.378000px;}
.ws37{word-spacing:0.441000px;}
.ws118{word-spacing:0.486000px;}
.ws6d{word-spacing:0.504000px;}
.ws12{word-spacing:0.513000px;}
.ws8c{word-spacing:0.567000px;}
.ws55{word-spacing:0.630000px;}
.ws12e{word-spacing:0.648000px;}
.ws11{word-spacing:0.684000px;}
.ws72{word-spacing:0.693000px;}
.ws47{word-spacing:0.756000px;}
.wsc4{word-spacing:0.855000px;}
.ws122{word-spacing:0.864000px;}
.ws58{word-spacing:0.882000px;}
.wsf2{word-spacing:0.918000px;}
.ws63{word-spacing:0.945000px;}
.wsbe{word-spacing:0.969000px;}
.wse7{word-spacing:0.972000px;}
.wsa8{word-spacing:1.008000px;}
.ws6b{word-spacing:1.071000px;}
.wse9{word-spacing:1.080000px;}
.ws3f{word-spacing:1.134000px;}
.ws104{word-spacing:1.197000px;}
.wsc6{word-spacing:1.260000px;}
.ws5a{word-spacing:1.275000px;}
.wsba{word-spacing:1.323000px;}
.wscd{word-spacing:1.386000px;}
.ws79{word-spacing:1.449000px;}
.ws41{word-spacing:1.512000px;}
.ws30{word-spacing:1.575000px;}
.ws124{word-spacing:1.620000px;}
.ws36{word-spacing:1.638000px;}
.ws35{word-spacing:1.701000px;}
.ws116{word-spacing:1.728000px;}
.ws5e{word-spacing:1.734000px;}
.wsa0{word-spacing:1.764000px;}
.ws94{word-spacing:1.827000px;}
.ws1a{word-spacing:1.881000px;}
.ws112{word-spacing:1.938000px;}
.wscc{word-spacing:1.953000px;}
.wsc5{word-spacing:1.995000px;}
.ws139{word-spacing:1.998000px;}
.ws98{word-spacing:2.016000px;}
.ws133{word-spacing:2.052000px;}
.ws51{word-spacing:2.079000px;}
.ws123{word-spacing:2.106000px;}
.wsc7{word-spacing:2.142000px;}
.ws132{word-spacing:2.160000px;}
.ws3e{word-spacing:2.205000px;}
.wsd{word-spacing:2.223000px;}
.wsc2{word-spacing:2.268000px;}
.ws29{word-spacing:2.331000px;}
.wsf0{word-spacing:2.376000px;}
.ws7d{word-spacing:2.394000px;}
.wsac{word-spacing:2.457000px;}
.wse6{word-spacing:2.484000px;}
.ws61{word-spacing:2.520000px;}
.ws8f{word-spacing:2.583000px;}
.ws31{word-spacing:2.646000px;}
.ws1b{word-spacing:2.679000px;}
.ws138{word-spacing:2.754000px;}
.wsa3{word-spacing:2.760000px;}
.wsa7{word-spacing:2.772000px;}
.wsaa{word-spacing:2.898000px;}
.wsb7{word-spacing:2.961000px;}
.ws16{word-spacing:2.964000px;}
.ws2a{word-spacing:3.024000px;}
.wsed{word-spacing:3.078000px;}
.wsd1{word-spacing:3.087000px;}
.ws125{word-spacing:3.132000px;}
.ws91{word-spacing:3.150000px;}
.ws8e{word-spacing:3.213000px;}
.ws1f{word-spacing:3.249000px;}
.wscb{word-spacing:3.276000px;}
.ws71{word-spacing:3.339000px;}
.ws87{word-spacing:3.402000px;}
.wsa6{word-spacing:3.465000px;}
.wsd9{word-spacing:3.510000px;}
.ws103{word-spacing:3.528000px;}
.ws11c{word-spacing:3.564000px;}
.wsbf{word-spacing:3.591000px;}
.ws137{word-spacing:3.618000px;}
.wse{word-spacing:3.648000px;}
.wsce{word-spacing:3.654000px;}
.ws19{word-spacing:3.705000px;}
.ws56{word-spacing:3.717000px;}
.wseb{word-spacing:3.726000px;}
.wsd7{word-spacing:3.780000px;}
.ws8d{word-spacing:3.843000px;}
.wsdd{word-spacing:3.888000px;}
.ws32{word-spacing:3.906000px;}
.ws102{word-spacing:3.969000px;}
.wsfd{word-spacing:3.996000px;}
.ws8b{word-spacing:4.032000px;}
.ws11a{word-spacing:4.104000px;}
.wsa2{word-spacing:4.158000px;}
.ws27{word-spacing:4.221000px;}
.wsf7{word-spacing:4.266000px;}
.ws77{word-spacing:4.284000px;}
.wse2{word-spacing:4.320000px;}
.ws20{word-spacing:4.332000px;}
.ws100{word-spacing:4.347000px;}
.ws111{word-spacing:4.374000px;}
.ws82{word-spacing:4.410000px;}
.ws12f{word-spacing:4.428000px;}
.ws17{word-spacing:4.446000px;}
.ws48{word-spacing:4.473000px;}
.ws6c{word-spacing:4.536000px;}
.wsc8{word-spacing:4.560000px;}
.wsc0{word-spacing:4.599000px;}
.ws2d{word-spacing:4.662000px;}
.ws10c{word-spacing:4.725000px;}
.wsbc{word-spacing:4.731000px;}
.ws57{word-spacing:4.788000px;}
.wsa{word-spacing:4.845000px;}
.ws9a{word-spacing:4.896000px;}
.ws105{word-spacing:4.914000px;}
.ws26{word-spacing:4.977000px;}
.ws46{word-spacing:5.040000px;}
.wsda{word-spacing:5.076000px;}
.ws9e{word-spacing:5.103000px;}
.ws134{word-spacing:5.130000px;}
.ws53{word-spacing:5.166000px;}
.wsfb{word-spacing:5.184000px;}
.ws89{word-spacing:5.202000px;}
.wsa5{word-spacing:5.229000px;}
.wsea{word-spacing:5.238000px;}
.ws75{word-spacing:5.355000px;}
.wsb5{word-spacing:5.481000px;}
.wse5{word-spacing:5.508000px;}
.ws92{word-spacing:5.544000px;}
.ws23{word-spacing:5.586000px;}
.wsb8{word-spacing:5.607000px;}
.ws9{word-spacing:5.643000px;}
.ws8a{word-spacing:5.670000px;}
.wse4{word-spacing:5.724000px;}
.wse8{word-spacing:5.832000px;}
.ws1d{word-spacing:5.871000px;}
.wsab{word-spacing:5.922000px;}
.wsb{word-spacing:5.928000px;}
.wsad{word-spacing:5.985000px;}
.wsef{word-spacing:6.048000px;}
.ws5b{word-spacing:6.069000px;}
.ws28{word-spacing:6.111000px;}
.ws7e{word-spacing:6.174000px;}
.ws93{word-spacing:6.426000px;}
.wsbd{word-spacing:6.441000px;}
.ws70{word-spacing:6.489000px;}
.ws1e{word-spacing:6.555000px;}
.ws54{word-spacing:6.615000px;}
.ws67{word-spacing:6.741000px;}
.ws120{word-spacing:6.750000px;}
.ws101{word-spacing:6.804000px;}
.ws131{word-spacing:6.858000px;}
.wsee{word-spacing:6.966000px;}
.ws2b{word-spacing:7.119000px;}
.ws66{word-spacing:7.371000px;}
.ws2c{word-spacing:7.434000px;}
.wsf9{word-spacing:7.722000px;}
.wsd8{word-spacing:7.776000px;}
.wsa9{word-spacing:7.812000px;}
.ws3d{word-spacing:7.875000px;}
.ws21{word-spacing:8.037000px;}
.ws68{word-spacing:8.127000px;}
.wsf3{word-spacing:8.478000px;}
.wsb4{word-spacing:8.568000px;}
.wsfa{word-spacing:8.586000px;}
.wsd6{word-spacing:8.757000px;}
.ws50{word-spacing:8.820000px;}
.wse3{word-spacing:8.910000px;}
.wsae{word-spacing:9.009000px;}
.ws40{word-spacing:9.072000px;}
.ws107{word-spacing:9.135000px;}
.ws10b{word-spacing:9.261000px;}
.wsdc{word-spacing:9.450000px;}
.ws136{word-spacing:9.720000px;}
.ws10a{word-spacing:10.017000px;}
.ws7b{word-spacing:10.269000px;}
.wsd0{word-spacing:11.025000px;}
.wsf1{word-spacing:13.122000px;}
.ws65{word-spacing:13.482000px;}
.wsff{word-spacing:20.664000px;}
.wsaf{word-spacing:22.932000px;}
.wsf4{word-spacing:29.016000px;}
.wsd4{word-spacing:29.016750px;}
.wse0{word-spacing:29.017500px;}
.ws4b{word-spacing:29.106000px;}
.wsd3{word-spacing:896.111250px;}
.wse1{word-spacing:1010.262000px;}
.wsf5{word-spacing:1198.308000px;}
.wsd5{word-spacing:1198.308750px;}
.wsdf{word-spacing:1198.309500px;}
._15{margin-left:-22.066200px;}
._12{margin-left:-19.042200px;}
._20{margin-left:-16.521600px;}
._9{margin-left:-14.443200px;}
._32{margin-left:-13.156800px;}
._c{margin-left:-12.048600px;}
._14{margin-left:-8.509800px;}
._1{margin-left:-7.113600px;}
._2{margin-left:-5.280000px;}
._8{margin-left:-4.218000px;}
._1f{margin-left:-3.046200px;}
._3{margin-left:-1.992600px;}
._18{width:1.138614px;}
._2f{width:2.196000px;}
._1a{width:3.204000px;}
._4{width:4.858200px;}
._29{width:6.010200px;}
._31{width:7.141386px;}
._1c{width:8.466600px;}
._11{width:10.236600px;}
._16{width:23.421000px;}
._1b{width:27.201000px;}
._10{width:30.477600px;}
._e{width:32.180880px;}
._2d{width:33.516000px;}
._2c{width:35.406000px;}
._d{width:36.974376px;}
._17{width:37.994490px;}
._13{width:39.371460px;}
._2a{width:41.769000px;}
._2b{width:62.496000px;}
._5{width:152.796000px;}
._24{width:264.630000px;}
._25{width:368.208000px;}
._23{width:396.768000px;}
._7{width:398.179800px;}
._27{width:440.292000px;}
._6{width:470.253600px;}
._21{width:471.375600px;}
._1e{width:472.629600px;}
._f{width:474.147600px;}
._26{width:475.269600px;}
._30{width:477.381600px;}
._b{width:490.361400px;}
._22{width:491.484600px;}
._1d{width:497.556000px;}
._19{width:500.988000px;}
._2e{width:503.760000px;}
._a{width:534.801600px;}
._0{width:591.987600px;}
._28{width:695.226000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:29.733000px;}
.fs1{font-size:35.700000px;}
.fsa{font-size:36.729000px;}
.fsd{font-size:37.800000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs3{font-size:96.000000px;}
.fs8{font-size:268.420800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.070800px;}
.y74{bottom:109.275600px;}
.y4b{bottom:110.348550px;}
.yd2{bottom:110.533800px;}
.y117{bottom:112.141050px;}
.y7e{bottom:112.183800px;}
.y1c9{bottom:112.398150px;}
.y188{bottom:118.120950px;}
.y12c{bottom:120.240600px;}
.y15e{bottom:123.874950px;}
.y73{bottom:124.275600px;}
.yec{bottom:127.183800px;}
.y20{bottom:127.334400px;}
.y1c8{bottom:127.908300px;}
.y4a{bottom:128.348550px;}
.yd1{bottom:128.383800px;}
.yd8{bottom:128.521350px;}
.y116{bottom:130.141050px;}
.y7d{bottom:130.183800px;}
.y187{bottom:136.120950px;}
.y15d{bottom:138.874950px;}
.y72{bottom:139.275600px;}
.y12b{bottom:140.104350px;}
.y1c7{bottom:143.418150px;}
.ya6{bottom:143.521350px;}
.yeb{bottom:143.683800px;}
.y1f{bottom:143.834400px;}
.yd0{bottom:146.233800px;}
.y49{bottom:146.348550px;}
.y115{bottom:148.141200px;}
.y7c{bottom:148.183800px;}
.y15c{bottom:153.874950px;}
.y186{bottom:154.120950px;}
.y71{bottom:154.275600px;}
.y196{bottom:154.933800px;}
.yd7{bottom:155.683800px;}
.y12a{bottom:158.260650px;}
.y1c6{bottom:158.928150px;}
.yea{bottom:160.183800px;}
.y1e{bottom:160.334400px;}
.ycf{bottom:164.083800px;}
.y48{bottom:164.348550px;}
.y114{bottom:166.141200px;}
.y7b{bottom:166.183800px;}
.y15b{bottom:168.874950px;}
.ya8{bottom:169.275600px;}
.y195{bottom:170.683800px;}
.y185{bottom:172.120950px;}
.y129{bottom:173.260650px;}
.y70{bottom:173.521350px;}
.yd6{bottom:173.683800px;}
.y1c5{bottom:174.438150px;}
.y1d{bottom:176.834400px;}
.ya5{bottom:178.333800px;}
.yce{bottom:181.933800px;}
.y47{bottom:182.348550px;}
.y15a{bottom:183.874950px;}
.y113{bottom:184.141200px;}
.y7a{bottom:184.183800px;}
.y6f{bottom:184.275600px;}
.y194{bottom:186.433800px;}
.ya7{bottom:188.521350px;}
.y1c4{bottom:189.948150px;}
.y184{bottom:190.120950px;}
.y128{bottom:192.270750px;}
.ye9{bottom:193.183800px;}
.y1c{bottom:193.334400px;}
.ya4{bottom:196.483800px;}
.y159{bottom:199.728600px;}
.y46{bottom:200.348550px;}
.y112{bottom:202.141200px;}
.y79{bottom:202.183800px;}
.y6e{bottom:203.521350px;}
.y1c3{bottom:205.458150px;}
.y127{bottom:207.270750px;}
.y183{bottom:208.120950px;}
.yd5{bottom:208.183800px;}
.y1b{bottom:209.834400px;}
.ye8{bottom:211.183800px;}
.ya3{bottom:214.633800px;}
.ycd{bottom:214.783800px;}
.y193{bottom:217.933800px;}
.y157{bottom:218.225100px;}
.y45{bottom:218.348550px;}
.y111{bottom:220.141200px;}
.y78{bottom:220.183800px;}
.y1c2{bottom:220.968150px;}
.yd4{bottom:224.683800px;}
.y182{bottom:226.120950px;}
.y1a{bottom:226.334400px;}
.y126{bottom:227.134350px;}
.ye7{bottom:229.183800px;}
.ycc{bottom:231.283800px;}
.ya2{bottom:232.783800px;}
.y156{bottom:233.225100px;}
.y192{bottom:233.683800px;}
.y44{bottom:236.348550px;}
.y1c1{bottom:236.478150px;}
.y110{bottom:238.141200px;}
.y6d{bottom:238.183800px;}
.yd3{bottom:241.183800px;}
.y19{bottom:242.834400px;}
.y181{bottom:244.120950px;}
.y125{bottom:245.290800px;}
.ye6{bottom:247.183800px;}
.ycb{bottom:247.783800px;}
.y155{bottom:248.225100px;}
.y191{bottom:249.433800px;}
.ya1{bottom:250.933800px;}
.y1c0{bottom:251.988150px;}
.y43{bottom:254.348550px;}
.y10f{bottom:256.141200px;}
.y6c{bottom:256.183800px;}
.y18{bottom:259.334400px;}
.y124{bottom:260.290800px;}
.y180{bottom:262.120950px;}
.y154{bottom:263.225100px;}
.ye5{bottom:265.183800px;}
.y1bf{bottom:267.498150px;}
.ya0{bottom:269.083800px;}
.y42{bottom:272.348550px;}
.y10e{bottom:274.141200px;}
.y6b{bottom:274.183800px;}
.y123{bottom:275.290800px;}
.y17{bottom:275.834400px;}
.y153{bottom:278.225100px;}
.yca{bottom:279.283800px;}
.y17f{bottom:280.120950px;}
.y190{bottom:280.933800px;}
.y1be{bottom:283.008150px;}
.ye4{bottom:283.183800px;}
.y9f{bottom:287.233800px;}
.y122{bottom:290.290800px;}
.y41{bottom:290.348550px;}
.y10d{bottom:292.141200px;}
.y6a{bottom:292.183800px;}
.y16{bottom:292.334400px;}
.y158{bottom:293.225100px;}
.y152{bottom:294.078750px;}
.y18f{bottom:296.683800px;}
.yc9{bottom:297.133800px;}
.y17e{bottom:298.120950px;}
.y1bd{bottom:298.518150px;}
.ye3{bottom:301.183800px;}
.y121{bottom:305.290800px;}
.y9e{bottom:305.383800px;}
.y40{bottom:308.348550px;}
.y15{bottom:308.834400px;}
.y10c{bottom:310.141200px;}
.y69{bottom:310.183800px;}
.y18e{bottom:312.433800px;}
.y151{bottom:312.575250px;}
.y1bc{bottom:314.028150px;}
.yc8{bottom:314.983800px;}
.y17d{bottom:316.120950px;}
.ye2{bottom:319.183800px;}
.y120{bottom:320.290800px;}
.y9d{bottom:323.533800px;}
.y3f{bottom:326.348550px;}
.y10b{bottom:328.141200px;}
.y68{bottom:328.183800px;}
.y150{bottom:328.428900px;}
.y1bb{bottom:329.538150px;}
.yc7{bottom:332.833800px;}
.y17c{bottom:334.120950px;}
.y11f{bottom:335.290800px;}
.ye1{bottom:337.183800px;}
.y9c{bottom:341.683800px;}
.y18d{bottom:343.933800px;}
.y3e{bottom:344.348550px;}
.y1ba{bottom:345.048150px;}
.y10a{bottom:346.141200px;}
.y67{bottom:346.183800px;}
.y14f{bottom:346.925550px;}
.yc6{bottom:350.683800px;}
.y11e{bottom:351.144450px;}
.y17b{bottom:352.120950px;}
.y1ec{bottom:352.674750px;}
.ye0{bottom:355.183800px;}
.y14{bottom:358.334400px;}
.y18c{bottom:359.683800px;}
.y9b{bottom:359.833800px;}
.y1b9{bottom:360.558150px;}
.y3d{bottom:362.348550px;}
.y14e{bottom:362.779200px;}
.y109{bottom:364.141200px;}
.y66{bottom:364.183800px;}
.y1eb{bottom:368.424750px;}
.yc5{bottom:368.533800px;}
.y11d{bottom:369.300750px;}
.y17a{bottom:370.120950px;}
.ydf{bottom:373.183800px;}
.y13{bottom:373.334400px;}
.y18b{bottom:375.433800px;}
.y1b8{bottom:376.068150px;}
.y9a{bottom:377.983800px;}
.y3c{bottom:380.348550px;}
.y14d{bottom:381.275700px;}
.y108{bottom:382.141200px;}
.y65{bottom:382.183800px;}
.y1ea{bottom:384.174750px;}
.yc4{bottom:386.383800px;}
.y179{bottom:388.120950px;}
.yde{bottom:391.183800px;}
.y1b7{bottom:391.578150px;}
.y99{bottom:396.133800px;}
.y14c{bottom:396.275700px;}
.y3b{bottom:398.348550px;}
.y1e9{bottom:399.924750px;}
.y107{bottom:400.141200px;}
.y64{bottom:400.183800px;}
.yc3{bottom:404.233800px;}
.y178{bottom:406.120950px;}
.y11c{bottom:406.933800px;}
.y1b6{bottom:407.088150px;}
.ydd{bottom:409.183800px;}
.y14b{bottom:411.275700px;}
.y98{bottom:414.283800px;}
.y1e8{bottom:415.674750px;}
.y3a{bottom:416.348550px;}
.y106{bottom:418.141200px;}
.y63{bottom:418.183800px;}
.y12{bottom:418.334400px;}
.yc2{bottom:422.083800px;}
.y1b5{bottom:422.598150px;}
.y18a{bottom:422.683800px;}
.y177{bottom:424.120950px;}
.y11b{bottom:424.933800px;}
.y14a{bottom:426.275700px;}
.y1e7{bottom:431.424750px;}
.y97{bottom:432.433800px;}
.y39{bottom:434.348550px;}
.y11{bottom:434.834400px;}
.y105{bottom:436.141200px;}
.y62{bottom:436.183800px;}
.y1b4{bottom:438.108150px;}
.y189{bottom:438.433800px;}
.yc1{bottom:439.933800px;}
.y176{bottom:442.120950px;}
.y11a{bottom:442.933800px;}
.ydc{bottom:443.683800px;}
.y149{bottom:445.625850px;}
.y1e6{bottom:447.174750px;}
.y96{bottom:450.583800px;}
.y10{bottom:451.334400px;}
.y38{bottom:452.348550px;}
.y1b3{bottom:453.618150px;}
.y104{bottom:454.141200px;}
.y61{bottom:454.183800px;}
.yc0{bottom:457.783800px;}
.y175{bottom:460.120950px;}
.ydb{bottom:460.183800px;}
.y148{bottom:460.625850px;}
.y119{bottom:460.933800px;}
.y1e5{bottom:462.924750px;}
.yf{bottom:467.834400px;}
.y95{bottom:468.733800px;}
.y1b2{bottom:469.128150px;}
.y36{bottom:470.348550px;}
.y103{bottom:472.141200px;}
.y60{bottom:472.183800px;}
.ybf{bottom:475.633800px;}
.y147{bottom:476.479500px;}
.yda{bottom:476.683800px;}
.y174{bottom:478.120950px;}
.y1e4{bottom:478.674750px;}
.y1b1{bottom:484.638150px;}
.y94{bottom:486.883800px;}
.y37{bottom:488.348550px;}
.y102{bottom:490.141200px;}
.y5f{bottom:490.183800px;}
.yd9{bottom:493.183800px;}
.ybe{bottom:493.483800px;}
.y1e3{bottom:494.424750px;}
.y145{bottom:494.976000px;}
.y118{bottom:495.433800px;}
.y173{bottom:496.120950px;}
.y1b0{bottom:500.148150px;}
.ye{bottom:500.834400px;}
.y93{bottom:505.033800px;}
.y101{bottom:508.141200px;}
.y5e{bottom:508.183800px;}
.y144{bottom:509.976000px;}
.y1e2{bottom:510.174750px;}
.ybd{bottom:511.333800px;}
.y172{bottom:514.120950px;}
.y1af{bottom:515.658150px;}
.yd{bottom:517.334400px;}
.y92{bottom:523.183800px;}
.y146{bottom:524.976000px;}
.y143{bottom:525.829650px;}
.y1e1{bottom:525.924750px;}
.y100{bottom:526.141200px;}
.y5d{bottom:526.183800px;}
.ybc{bottom:529.183800px;}
.y1ae{bottom:531.168150px;}
.yc{bottom:533.834400px;}
.y91{bottom:541.333800px;}
.y1e0{bottom:541.674750px;}
.yff{bottom:544.141200px;}
.y77{bottom:544.183800px;}
.y141{bottom:544.326300px;}
.y1ad{bottom:546.678150px;}
.ybb{bottom:547.033800px;}
.y171{bottom:550.120950px;}
.yb{bottom:550.334400px;}
.y1df{bottom:557.424750px;}
.y140{bottom:559.326300px;}
.y90{bottom:559.483800px;}
.y35{bottom:560.348550px;}
.yfe{bottom:562.141200px;}
.y5c{bottom:562.183800px;}
.y1ac{bottom:562.188150px;}
.yba{bottom:564.883800px;}
.y1de{bottom:573.174750px;}
.y142{bottom:574.326300px;}
.y13f{bottom:575.179800px;}
.y34{bottom:576.848550px;}
.y8f{bottom:577.633800px;}
.y1ab{bottom:577.698150px;}
.yfd{bottom:580.141200px;}
.y76{bottom:580.183800px;}
.yb9{bottom:582.733800px;}
.y1dd{bottom:588.924750px;}
.y1aa{bottom:593.208150px;}
.y13e{bottom:593.676450px;}
.ya{bottom:593.834400px;}
.y8e{bottom:595.783800px;}
.yfc{bottom:598.141200px;}
.y75{bottom:598.183800px;}
.yb8{bottom:600.583800px;}
.y170{bottom:604.247850px;}
.y1dc{bottom:604.674750px;}
.y1a9{bottom:608.718150px;}
.y33{bottom:609.848550px;}
.y13d{bottom:613.880250px;}
.y8d{bottom:613.933800px;}
.yfb{bottom:616.141200px;}
.y5b{bottom:616.183800px;}
.yb7{bottom:618.433800px;}
.y16f{bottom:619.247850px;}
.y1db{bottom:620.424750px;}
.y9{bottom:620.834400px;}
.y1a8{bottom:624.228150px;}
.y32{bottom:626.348550px;}
.y8c{bottom:632.083800px;}
.y13c{bottom:632.376750px;}
.yfa{bottom:634.141200px;}
.y5a{bottom:634.183800px;}
.y16e{bottom:635.101500px;}
.y1da{bottom:636.174750px;}
.yb6{bottom:636.283800px;}
.y1a7{bottom:639.738150px;}
.y31{bottom:642.848550px;}
.y13a{bottom:647.376750px;}
.y8{bottom:647.834400px;}
.y8b{bottom:650.233800px;}
.y1d9{bottom:651.924750px;}
.yf9{bottom:652.141200px;}
.y59{bottom:652.183800px;}
.y16d{bottom:653.257800px;}
.yb5{bottom:654.133800px;}
.y1a6{bottom:655.248150px;}
.y30{bottom:659.348550px;}
.y13b{bottom:662.376750px;}
.y1d8{bottom:667.674750px;}
.y16c{bottom:668.257800px;}
.y8a{bottom:668.383800px;}
.yf8{bottom:670.141200px;}
.y58{bottom:670.183800px;}
.y1a5{bottom:670.758150px;}
.yb4{bottom:671.983800px;}
.y2f{bottom:675.848550px;}
.y139{bottom:681.726900px;}
.y16a{bottom:683.257800px;}
.y1d7{bottom:683.424750px;}
.y1a4{bottom:686.268150px;}
.y89{bottom:686.533800px;}
.yf7{bottom:688.141200px;}
.y57{bottom:688.183800px;}
.yb3{bottom:689.833800px;}
.y2e{bottom:692.348550px;}
.y138{bottom:696.726900px;}
.y169{bottom:698.257800px;}
.y1d6{bottom:699.174750px;}
.y1a3{bottom:701.778150px;}
.y7{bottom:701.834400px;}
.y88{bottom:704.683800px;}
.yf6{bottom:706.141200px;}
.y56{bottom:706.183800px;}
.yb2{bottom:707.683800px;}
.y2d{bottom:708.848550px;}
.y137{bottom:711.726900px;}
.y16b{bottom:713.257800px;}
.y168{bottom:714.111450px;}
.y1d5{bottom:714.924750px;}
.y1a2{bottom:717.288150px;}
.y87{bottom:722.833800px;}
.yf5{bottom:724.141200px;}
.y55{bottom:724.183800px;}
.y2c{bottom:725.348550px;}
.yb1{bottom:725.533800px;}
.y6{bottom:728.834400px;}
.y1d4{bottom:730.674750px;}
.y136{bottom:731.930850px;}
.y167{bottom:732.267900px;}
.y1a1{bottom:732.798150px;}
.y86{bottom:740.983800px;}
.y2b{bottom:741.848550px;}
.yf4{bottom:742.141200px;}
.y54{bottom:742.183800px;}
.yb0{bottom:743.383800px;}
.y1d3{bottom:746.424750px;}
.y166{bottom:747.267900px;}
.y1a0{bottom:748.308150px;}
.y135{bottom:750.427350px;}
.y5{bottom:755.834400px;}
.y2a{bottom:758.348550px;}
.y85{bottom:759.133800px;}
.yf3{bottom:760.141200px;}
.y53{bottom:760.183800px;}
.yaf{bottom:761.233800px;}
.y1d2{bottom:762.174750px;}
.y165{bottom:762.267900px;}
.y19f{bottom:763.818150px;}
.y134{bottom:765.427350px;}
.y29{bottom:774.848550px;}
.y84{bottom:777.283800px;}
.y1d1{bottom:777.924750px;}
.y164{bottom:778.121550px;}
.yf2{bottom:778.141050px;}
.y52{bottom:778.183800px;}
.yae{bottom:779.083800px;}
.y19e{bottom:779.328150px;}
.y133{bottom:780.427350px;}
.y4{bottom:782.834400px;}
.y28{bottom:791.348550px;}
.y1d0{bottom:793.674750px;}
.y19d{bottom:794.838300px;}
.y83{bottom:795.433800px;}
.yf1{bottom:796.141050px;}
.y51{bottom:796.183800px;}
.y163{bottom:796.277850px;}
.yad{bottom:796.933800px;}
.y132{bottom:799.777650px;}
.y27{bottom:807.848550px;}
.y1cf{bottom:809.424750px;}
.y19c{bottom:810.348150px;}
.y162{bottom:812.131500px;}
.y82{bottom:813.583800px;}
.yf0{bottom:814.141050px;}
.y50{bottom:814.183800px;}
.y131{bottom:814.777650px;}
.yac{bottom:814.783800px;}
.y26{bottom:824.348550px;}
.y1ce{bottom:825.174750px;}
.y19b{bottom:825.858150px;}
.y130{bottom:829.777650px;}
.y161{bottom:830.287950px;}
.y81{bottom:831.733950px;}
.yef{bottom:832.141050px;}
.y4f{bottom:832.183800px;}
.yab{bottom:832.633800px;}
.y1cd{bottom:840.924750px;}
.y19a{bottom:841.368150px;}
.y160{bottom:846.141600px;}
.y12f{bottom:849.127800px;}
.y80{bottom:849.883800px;}
.yee{bottom:850.141050px;}
.y4e{bottom:850.183800px;}
.yaa{bottom:850.483950px;}
.y1cc{bottom:856.674750px;}
.y199{bottom:856.878150px;}
.y12e{bottom:864.981450px;}
.y15f{bottom:865.151550px;}
.y7f{bottom:868.033800px;}
.y4d{bottom:868.183800px;}
.ya9{bottom:868.333800px;}
.y25{bottom:870.848550px;}
.y198{bottom:872.388150px;}
.y1cb{bottom:872.424750px;}
.y12d{bottom:883.307850px;}
.yed{bottom:886.141050px;}
.y4c{bottom:886.183800px;}
.y24{bottom:887.348550px;}
.y197{bottom:887.898150px;}
.y1ca{bottom:887.934750px;}
.y23{bottom:914.081850px;}
.y3{bottom:923.834400px;}
.y22{bottom:927.581850px;}
.y21{bottom:941.081850px;}
.y2{bottom:941.084400px;}
.he{height:29.325000px;}
.h15{height:34.344000px;}
.h9{height:40.662000px;}
.ha{height:41.976000px;}
.h7{height:43.584000px;}
.h12{height:45.617400px;}
.h13{height:45.618000px;}
.hf{height:46.308000px;}
.h2{height:46.614000px;}
.h3{height:49.032000px;}
.h6{height:49.356000px;}
.h16{height:50.328000px;}
.h8{height:51.756000px;}
.h11{height:54.480000px;}
.hc{height:57.204000px;}
.h10{height:57.582000px;}
.hd{height:58.716000px;}
.h4{height:87.168000px;}
.h5{height:87.744000px;}
.h14{height:109.032000px;}
.hb{height:243.726086px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:91.324650px;}
.x1{left:93.543300px;}
.xe{left:98.987400px;}
.x6{left:114.803100px;}
.xb{left:117.887100px;}
.xc{left:121.181100px;}
.x3{left:131.811000px;}
.x5{left:136.083300px;}
.xf{left:142.272900px;}
.xa{left:143.568750px;}
.x8{left:144.670350px;}
.x2{left:153.070950px;}
.x9{left:170.453700px;}
.x7{left:255.828750px;}
.xd{left:404.312100px;}
@media print{
.v3{vertical-align:-15.096000pt;}
.v4{vertical-align:-3.035200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.648000pt;}
.v5{vertical-align:53.333333pt;}
.v1{vertical-align:128.000000pt;}
.lsa{letter-spacing:-2.400000pt;}
.lse{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.840000pt;}
.ls2{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.280000pt;}
.ls3{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.960000pt;}
.lsd{letter-spacing:8.637333pt;}
.ls0{letter-spacing:11.333333pt;}
.ws14{word-spacing:-59.649067pt;}
.ws5f{word-spacing:-14.560000pt;}
.wsb1{word-spacing:-14.280000pt;}
.ws15{word-spacing:-14.000000pt;}
.wsb0{word-spacing:-13.720000pt;}
.wsb2{word-spacing:-13.600000pt;}
.ws3b{word-spacing:-13.440000pt;}
.ws9d{word-spacing:-13.333333pt;}
.wsca{word-spacing:-13.160000pt;}
.ws114{word-spacing:-12.960000pt;}
.wsc9{word-spacing:-12.880000pt;}
.ws6{word-spacing:-12.666667pt;}
.ws3{word-spacing:-12.000000pt;}
.ws115{word-spacing:-11.664000pt;}
.wsf6{word-spacing:-11.520000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws12d{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws109{word-spacing:-9.600000pt;}
.ws39{word-spacing:-8.162000pt;}
.ws1{word-spacing:-7.933333pt;}
.ws3c{word-spacing:-6.607333pt;}
.ws117{word-spacing:-3.648000pt;}
.wsd2{word-spacing:-3.248000pt;}
.ws130{word-spacing:-3.216000pt;}
.ws129{word-spacing:-3.024000pt;}
.ws45{word-spacing:-2.744000pt;}
.ws60{word-spacing:-2.688000pt;}
.ws59{word-spacing:-2.632000pt;}
.ws52{word-spacing:-2.520000pt;}
.ws4d{word-spacing:-2.464000pt;}
.ws84{word-spacing:-2.408000pt;}
.ws73{word-spacing:-2.352000pt;}
.wsc3{word-spacing:-2.330667pt;}
.wsec{word-spacing:-2.304000pt;}
.ws6e{word-spacing:-2.296000pt;}
.ws83{word-spacing:-2.240000pt;}
.ws7f{word-spacing:-2.184000pt;}
.ws135{word-spacing:-2.160000pt;}
.ws9c{word-spacing:-2.130667pt;}
.ws86{word-spacing:-2.128000pt;}
.ws10f{word-spacing:-2.112000pt;}
.ws9f{word-spacing:-2.072000pt;}
.ws42{word-spacing:-2.016000pt;}
.ws18{word-spacing:-1.976000pt;}
.ws11b{word-spacing:-1.968000pt;}
.ws4e{word-spacing:-1.960000pt;}
.ws69{word-spacing:-1.904000pt;}
.ws22{word-spacing:-1.874667pt;}
.ws34{word-spacing:-1.848000pt;}
.ws11f{word-spacing:-1.824000pt;}
.ws106{word-spacing:-1.792000pt;}
.ws121{word-spacing:-1.776000pt;}
.wsa4{word-spacing:-1.760000pt;}
.ws85{word-spacing:-1.736000pt;}
.ws25{word-spacing:-1.680000pt;}
.ws128{word-spacing:-1.632000pt;}
.ws7a{word-spacing:-1.624000pt;}
.ws76{word-spacing:-1.568000pt;}
.ws6f{word-spacing:-1.512000pt;}
.wsb6{word-spacing:-1.456000pt;}
.ws78{word-spacing:-1.400000pt;}
.ws2f{word-spacing:-1.344000pt;}
.ws43{word-spacing:-1.288000pt;}
.ws110{word-spacing:-1.248000pt;}
.ws81{word-spacing:-1.232000pt;}
.ws10d{word-spacing:-1.200000pt;}
.wsbb{word-spacing:-1.176000pt;}
.wsde{word-spacing:-1.152000pt;}
.ws97{word-spacing:-1.120000pt;}
.wsfe{word-spacing:-1.104000pt;}
.ws5d{word-spacing:-1.088000pt;}
.ws38{word-spacing:-1.064000pt;}
.wsf{word-spacing:-1.013333pt;}
.ws7c{word-spacing:-1.008000pt;}
.ws88{word-spacing:-0.997333pt;}
.wsfc{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.952000pt;}
.wsc1{word-spacing:-0.896000pt;}
.ws127{word-spacing:-0.864000pt;}
.ws1c{word-spacing:-0.861333pt;}
.ws64{word-spacing:-0.840000pt;}
.ws44{word-spacing:-0.784000pt;}
.wsf8{word-spacing:-0.720000pt;}
.ws8{word-spacing:-0.709333pt;}
.ws49{word-spacing:-0.672000pt;}
.ws4c{word-spacing:-0.616000pt;}
.ws10e{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.560000pt;}
.ws96{word-spacing:-0.504000pt;}
.ws5c{word-spacing:-0.498667pt;}
.wsdb{word-spacing:-0.480000pt;}
.ws62{word-spacing:-0.448000pt;}
.ws119{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.405333pt;}
.ws90{word-spacing:-0.392000pt;}
.ws2e{word-spacing:-0.336000pt;}
.wsb9{word-spacing:-0.320000pt;}
.ws80{word-spacing:-0.280000pt;}
.ws12a{word-spacing:-0.240000pt;}
.wsb3{word-spacing:-0.224000pt;}
.ws12b{word-spacing:-0.192000pt;}
.ws6a{word-spacing:-0.168000pt;}
.ws11e{word-spacing:-0.144000pt;}
.wscf{word-spacing:-0.112000pt;}
.ws4{word-spacing:-0.059733pt;}
.ws13{word-spacing:-0.058667pt;}
.ws3a{word-spacing:-0.056000pt;}
.ws108{word-spacing:-0.048000pt;}
.ws2{word-spacing:-0.045333pt;}
.ws113{word-spacing:-0.033600pt;}
.ws7{word-spacing:0.000000pt;}
.ws11d{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.056000pt;}
.wsc{word-spacing:0.101333pt;}
.ws74{word-spacing:0.112000pt;}
.ws126{word-spacing:0.192000pt;}
.ws95{word-spacing:0.224000pt;}
.ws99{word-spacing:0.226667pt;}
.ws33{word-spacing:0.280000pt;}
.ws12c{word-spacing:0.288000pt;}
.ws9b{word-spacing:0.317333pt;}
.ws4f{word-spacing:0.336000pt;}
.ws37{word-spacing:0.392000pt;}
.ws118{word-spacing:0.432000pt;}
.ws6d{word-spacing:0.448000pt;}
.ws12{word-spacing:0.456000pt;}
.ws8c{word-spacing:0.504000pt;}
.ws55{word-spacing:0.560000pt;}
.ws12e{word-spacing:0.576000pt;}
.ws11{word-spacing:0.608000pt;}
.ws72{word-spacing:0.616000pt;}
.ws47{word-spacing:0.672000pt;}
.wsc4{word-spacing:0.760000pt;}
.ws122{word-spacing:0.768000pt;}
.ws58{word-spacing:0.784000pt;}
.wsf2{word-spacing:0.816000pt;}
.ws63{word-spacing:0.840000pt;}
.wsbe{word-spacing:0.861333pt;}
.wse7{word-spacing:0.864000pt;}
.wsa8{word-spacing:0.896000pt;}
.ws6b{word-spacing:0.952000pt;}
.wse9{word-spacing:0.960000pt;}
.ws3f{word-spacing:1.008000pt;}
.ws104{word-spacing:1.064000pt;}
.wsc6{word-spacing:1.120000pt;}
.ws5a{word-spacing:1.133333pt;}
.wsba{word-spacing:1.176000pt;}
.wscd{word-spacing:1.232000pt;}
.ws79{word-spacing:1.288000pt;}
.ws41{word-spacing:1.344000pt;}
.ws30{word-spacing:1.400000pt;}
.ws124{word-spacing:1.440000pt;}
.ws36{word-spacing:1.456000pt;}
.ws35{word-spacing:1.512000pt;}
.ws116{word-spacing:1.536000pt;}
.ws5e{word-spacing:1.541333pt;}
.wsa0{word-spacing:1.568000pt;}
.ws94{word-spacing:1.624000pt;}
.ws1a{word-spacing:1.672000pt;}
.ws112{word-spacing:1.722667pt;}
.wscc{word-spacing:1.736000pt;}
.wsc5{word-spacing:1.773333pt;}
.ws139{word-spacing:1.776000pt;}
.ws98{word-spacing:1.792000pt;}
.ws133{word-spacing:1.824000pt;}
.ws51{word-spacing:1.848000pt;}
.ws123{word-spacing:1.872000pt;}
.wsc7{word-spacing:1.904000pt;}
.ws132{word-spacing:1.920000pt;}
.ws3e{word-spacing:1.960000pt;}
.wsd{word-spacing:1.976000pt;}
.wsc2{word-spacing:2.016000pt;}
.ws29{word-spacing:2.072000pt;}
.wsf0{word-spacing:2.112000pt;}
.ws7d{word-spacing:2.128000pt;}
.wsac{word-spacing:2.184000pt;}
.wse6{word-spacing:2.208000pt;}
.ws61{word-spacing:2.240000pt;}
.ws8f{word-spacing:2.296000pt;}
.ws31{word-spacing:2.352000pt;}
.ws1b{word-spacing:2.381333pt;}
.ws138{word-spacing:2.448000pt;}
.wsa3{word-spacing:2.453333pt;}
.wsa7{word-spacing:2.464000pt;}
.wsaa{word-spacing:2.576000pt;}
.wsb7{word-spacing:2.632000pt;}
.ws16{word-spacing:2.634667pt;}
.ws2a{word-spacing:2.688000pt;}
.wsed{word-spacing:2.736000pt;}
.wsd1{word-spacing:2.744000pt;}
.ws125{word-spacing:2.784000pt;}
.ws91{word-spacing:2.800000pt;}
.ws8e{word-spacing:2.856000pt;}
.ws1f{word-spacing:2.888000pt;}
.wscb{word-spacing:2.912000pt;}
.ws71{word-spacing:2.968000pt;}
.ws87{word-spacing:3.024000pt;}
.wsa6{word-spacing:3.080000pt;}
.wsd9{word-spacing:3.120000pt;}
.ws103{word-spacing:3.136000pt;}
.ws11c{word-spacing:3.168000pt;}
.wsbf{word-spacing:3.192000pt;}
.ws137{word-spacing:3.216000pt;}
.wse{word-spacing:3.242667pt;}
.wsce{word-spacing:3.248000pt;}
.ws19{word-spacing:3.293333pt;}
.ws56{word-spacing:3.304000pt;}
.wseb{word-spacing:3.312000pt;}
.wsd7{word-spacing:3.360000pt;}
.ws8d{word-spacing:3.416000pt;}
.wsdd{word-spacing:3.456000pt;}
.ws32{word-spacing:3.472000pt;}
.ws102{word-spacing:3.528000pt;}
.wsfd{word-spacing:3.552000pt;}
.ws8b{word-spacing:3.584000pt;}
.ws11a{word-spacing:3.648000pt;}
.wsa2{word-spacing:3.696000pt;}
.ws27{word-spacing:3.752000pt;}
.wsf7{word-spacing:3.792000pt;}
.ws77{word-spacing:3.808000pt;}
.wse2{word-spacing:3.840000pt;}
.ws20{word-spacing:3.850667pt;}
.ws100{word-spacing:3.864000pt;}
.ws111{word-spacing:3.888000pt;}
.ws82{word-spacing:3.920000pt;}
.ws12f{word-spacing:3.936000pt;}
.ws17{word-spacing:3.952000pt;}
.ws48{word-spacing:3.976000pt;}
.ws6c{word-spacing:4.032000pt;}
.wsc8{word-spacing:4.053333pt;}
.wsc0{word-spacing:4.088000pt;}
.ws2d{word-spacing:4.144000pt;}
.ws10c{word-spacing:4.200000pt;}
.wsbc{word-spacing:4.205333pt;}
.ws57{word-spacing:4.256000pt;}
.wsa{word-spacing:4.306667pt;}
.ws9a{word-spacing:4.352000pt;}
.ws105{word-spacing:4.368000pt;}
.ws26{word-spacing:4.424000pt;}
.ws46{word-spacing:4.480000pt;}
.wsda{word-spacing:4.512000pt;}
.ws9e{word-spacing:4.536000pt;}
.ws134{word-spacing:4.560000pt;}
.ws53{word-spacing:4.592000pt;}
.wsfb{word-spacing:4.608000pt;}
.ws89{word-spacing:4.624000pt;}
.wsa5{word-spacing:4.648000pt;}
.wsea{word-spacing:4.656000pt;}
.ws75{word-spacing:4.760000pt;}
.wsb5{word-spacing:4.872000pt;}
.wse5{word-spacing:4.896000pt;}
.ws92{word-spacing:4.928000pt;}
.ws23{word-spacing:4.965333pt;}
.wsb8{word-spacing:4.984000pt;}
.ws9{word-spacing:5.016000pt;}
.ws8a{word-spacing:5.040000pt;}
.wse4{word-spacing:5.088000pt;}
.wse8{word-spacing:5.184000pt;}
.ws1d{word-spacing:5.218667pt;}
.wsab{word-spacing:5.264000pt;}
.wsb{word-spacing:5.269333pt;}
.wsad{word-spacing:5.320000pt;}
.wsef{word-spacing:5.376000pt;}
.ws5b{word-spacing:5.394667pt;}
.ws28{word-spacing:5.432000pt;}
.ws7e{word-spacing:5.488000pt;}
.ws93{word-spacing:5.712000pt;}
.wsbd{word-spacing:5.725333pt;}
.ws70{word-spacing:5.768000pt;}
.ws1e{word-spacing:5.826667pt;}
.ws54{word-spacing:5.880000pt;}
.ws67{word-spacing:5.992000pt;}
.ws120{word-spacing:6.000000pt;}
.ws101{word-spacing:6.048000pt;}
.ws131{word-spacing:6.096000pt;}
.wsee{word-spacing:6.192000pt;}
.ws2b{word-spacing:6.328000pt;}
.ws66{word-spacing:6.552000pt;}
.ws2c{word-spacing:6.608000pt;}
.wsf9{word-spacing:6.864000pt;}
.wsd8{word-spacing:6.912000pt;}
.wsa9{word-spacing:6.944000pt;}
.ws3d{word-spacing:7.000000pt;}
.ws21{word-spacing:7.144000pt;}
.ws68{word-spacing:7.224000pt;}
.wsf3{word-spacing:7.536000pt;}
.wsb4{word-spacing:7.616000pt;}
.wsfa{word-spacing:7.632000pt;}
.wsd6{word-spacing:7.784000pt;}
.ws50{word-spacing:7.840000pt;}
.wse3{word-spacing:7.920000pt;}
.wsae{word-spacing:8.008000pt;}
.ws40{word-spacing:8.064000pt;}
.ws107{word-spacing:8.120000pt;}
.ws10b{word-spacing:8.232000pt;}
.wsdc{word-spacing:8.400000pt;}
.ws136{word-spacing:8.640000pt;}
.ws10a{word-spacing:8.904000pt;}
.ws7b{word-spacing:9.128000pt;}
.wsd0{word-spacing:9.800000pt;}
.wsf1{word-spacing:11.664000pt;}
.ws65{word-spacing:11.984000pt;}
.wsff{word-spacing:18.368000pt;}
.wsaf{word-spacing:20.384000pt;}
.wsf4{word-spacing:25.792000pt;}
.wsd4{word-spacing:25.792667pt;}
.wse0{word-spacing:25.793333pt;}
.ws4b{word-spacing:25.872000pt;}
.wsd3{word-spacing:796.543333pt;}
.wse1{word-spacing:898.010667pt;}
.wsf5{word-spacing:1065.162667pt;}
.wsd5{word-spacing:1065.163333pt;}
.wsdf{word-spacing:1065.164000pt;}
._15{margin-left:-19.614400pt;}
._12{margin-left:-16.926400pt;}
._20{margin-left:-14.685867pt;}
._9{margin-left:-12.838400pt;}
._32{margin-left:-11.694933pt;}
._c{margin-left:-10.709867pt;}
._14{margin-left:-7.564267pt;}
._1{margin-left:-6.323200pt;}
._2{margin-left:-4.693333pt;}
._8{margin-left:-3.749333pt;}
._1f{margin-left:-2.707733pt;}
._3{margin-left:-1.771200pt;}
._18{width:1.012101pt;}
._2f{width:1.952000pt;}
._1a{width:2.848000pt;}
._4{width:4.318400pt;}
._29{width:5.342400pt;}
._31{width:6.347899pt;}
._1c{width:7.525867pt;}
._11{width:9.099200pt;}
._16{width:20.818667pt;}
._1b{width:24.178667pt;}
._10{width:27.091200pt;}
._e{width:28.605227pt;}
._2d{width:29.792000pt;}
._2c{width:31.472000pt;}
._d{width:32.866112pt;}
._17{width:33.772880pt;}
._13{width:34.996853pt;}
._2a{width:37.128000pt;}
._2b{width:55.552000pt;}
._5{width:135.818667pt;}
._24{width:235.226667pt;}
._25{width:327.296000pt;}
._23{width:352.682667pt;}
._7{width:353.937600pt;}
._27{width:391.370667pt;}
._6{width:418.003200pt;}
._21{width:419.000533pt;}
._1e{width:420.115200pt;}
._f{width:421.464533pt;}
._26{width:422.461867pt;}
._30{width:424.339200pt;}
._b{width:435.876800pt;}
._22{width:436.875200pt;}
._1d{width:442.272000pt;}
._19{width:445.322667pt;}
._2e{width:447.786667pt;}
._a{width:475.379200pt;}
._0{width:526.211200pt;}
._28{width:617.978667pt;}
.fsb{font-size:26.429333pt;}
.fs1{font-size:31.733333pt;}
.fsa{font-size:32.648000pt;}
.fsd{font-size:33.600000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs3{font-size:85.333333pt;}
.fs8{font-size:238.596267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.062933pt;}
.y74{bottom:97.133867pt;}
.y4b{bottom:98.087600pt;}
.yd2{bottom:98.252267pt;}
.y117{bottom:99.680933pt;}
.y7e{bottom:99.718933pt;}
.y1c9{bottom:99.909467pt;}
.y188{bottom:104.996400pt;}
.y12c{bottom:106.880533pt;}
.y15e{bottom:110.111067pt;}
.y73{bottom:110.467200pt;}
.yec{bottom:113.052267pt;}
.y20{bottom:113.186133pt;}
.y1c8{bottom:113.696267pt;}
.y4a{bottom:114.087600pt;}
.yd1{bottom:114.118933pt;}
.yd8{bottom:114.241200pt;}
.y116{bottom:115.680933pt;}
.y7d{bottom:115.718933pt;}
.y187{bottom:120.996400pt;}
.y15d{bottom:123.444400pt;}
.y72{bottom:123.800533pt;}
.y12b{bottom:124.537200pt;}
.y1c7{bottom:127.482800pt;}
.ya6{bottom:127.574533pt;}
.yeb{bottom:127.718933pt;}
.y1f{bottom:127.852800pt;}
.yd0{bottom:129.985600pt;}
.y49{bottom:130.087600pt;}
.y115{bottom:131.681067pt;}
.y7c{bottom:131.718933pt;}
.y15c{bottom:136.777733pt;}
.y186{bottom:136.996400pt;}
.y71{bottom:137.133867pt;}
.y196{bottom:137.718933pt;}
.yd7{bottom:138.385600pt;}
.y12a{bottom:140.676133pt;}
.y1c6{bottom:141.269467pt;}
.yea{bottom:142.385600pt;}
.y1e{bottom:142.519467pt;}
.ycf{bottom:145.852267pt;}
.y48{bottom:146.087600pt;}
.y114{bottom:147.681067pt;}
.y7b{bottom:147.718933pt;}
.y15b{bottom:150.111067pt;}
.ya8{bottom:150.467200pt;}
.y195{bottom:151.718933pt;}
.y185{bottom:152.996400pt;}
.y129{bottom:154.009467pt;}
.y70{bottom:154.241200pt;}
.yd6{bottom:154.385600pt;}
.y1c5{bottom:155.056133pt;}
.y1d{bottom:157.186133pt;}
.ya5{bottom:158.518933pt;}
.yce{bottom:161.718933pt;}
.y47{bottom:162.087600pt;}
.y15a{bottom:163.444400pt;}
.y113{bottom:163.681067pt;}
.y7a{bottom:163.718933pt;}
.y6f{bottom:163.800533pt;}
.y194{bottom:165.718933pt;}
.ya7{bottom:167.574533pt;}
.y1c4{bottom:168.842800pt;}
.y184{bottom:168.996400pt;}
.y128{bottom:170.907333pt;}
.ye9{bottom:171.718933pt;}
.y1c{bottom:171.852800pt;}
.ya4{bottom:174.652267pt;}
.y159{bottom:177.536533pt;}
.y46{bottom:178.087600pt;}
.y112{bottom:179.681067pt;}
.y79{bottom:179.718933pt;}
.y6e{bottom:180.907867pt;}
.y1c3{bottom:182.629467pt;}
.y127{bottom:184.240667pt;}
.y183{bottom:184.996400pt;}
.yd5{bottom:185.052267pt;}
.y1b{bottom:186.519467pt;}
.ye8{bottom:187.718933pt;}
.ya3{bottom:190.785600pt;}
.ycd{bottom:190.918933pt;}
.y193{bottom:193.718933pt;}
.y157{bottom:193.977867pt;}
.y45{bottom:194.087600pt;}
.y111{bottom:195.681067pt;}
.y78{bottom:195.718933pt;}
.y1c2{bottom:196.416133pt;}
.yd4{bottom:199.718933pt;}
.y182{bottom:200.996400pt;}
.y1a{bottom:201.186133pt;}
.y126{bottom:201.897200pt;}
.ye7{bottom:203.718933pt;}
.ycc{bottom:205.585600pt;}
.ya2{bottom:206.918933pt;}
.y156{bottom:207.311200pt;}
.y192{bottom:207.718933pt;}
.y44{bottom:210.087600pt;}
.y1c1{bottom:210.202800pt;}
.y110{bottom:211.681067pt;}
.y6d{bottom:211.718933pt;}
.yd3{bottom:214.385600pt;}
.y19{bottom:215.852800pt;}
.y181{bottom:216.996400pt;}
.y125{bottom:218.036267pt;}
.ye6{bottom:219.718933pt;}
.ycb{bottom:220.252267pt;}
.y155{bottom:220.644533pt;}
.y191{bottom:221.718933pt;}
.ya1{bottom:223.052267pt;}
.y1c0{bottom:223.989467pt;}
.y43{bottom:226.087600pt;}
.y10f{bottom:227.681067pt;}
.y6c{bottom:227.718933pt;}
.y18{bottom:230.519467pt;}
.y124{bottom:231.369600pt;}
.y180{bottom:232.996400pt;}
.y154{bottom:233.977867pt;}
.ye5{bottom:235.718933pt;}
.y1bf{bottom:237.776133pt;}
.ya0{bottom:239.185600pt;}
.y42{bottom:242.087600pt;}
.y10e{bottom:243.681067pt;}
.y6b{bottom:243.718933pt;}
.y123{bottom:244.702933pt;}
.y17{bottom:245.186133pt;}
.y153{bottom:247.311200pt;}
.yca{bottom:248.252267pt;}
.y17f{bottom:248.996400pt;}
.y190{bottom:249.718933pt;}
.y1be{bottom:251.562800pt;}
.ye4{bottom:251.718933pt;}
.y9f{bottom:255.318933pt;}
.y122{bottom:258.036267pt;}
.y41{bottom:258.087600pt;}
.y10d{bottom:259.681067pt;}
.y6a{bottom:259.718933pt;}
.y16{bottom:259.852800pt;}
.y158{bottom:260.644533pt;}
.y152{bottom:261.403333pt;}
.y18f{bottom:263.718933pt;}
.yc9{bottom:264.118933pt;}
.y17e{bottom:264.996400pt;}
.y1bd{bottom:265.349467pt;}
.ye3{bottom:267.718933pt;}
.y121{bottom:271.369600pt;}
.y9e{bottom:271.452267pt;}
.y40{bottom:274.087600pt;}
.y15{bottom:274.519467pt;}
.y10c{bottom:275.681067pt;}
.y69{bottom:275.718933pt;}
.y18e{bottom:277.718933pt;}
.y151{bottom:277.844667pt;}
.y1bc{bottom:279.136133pt;}
.yc8{bottom:279.985600pt;}
.y17d{bottom:280.996400pt;}
.ye2{bottom:283.718933pt;}
.y120{bottom:284.702933pt;}
.y9d{bottom:287.585600pt;}
.y3f{bottom:290.087600pt;}
.y10b{bottom:291.681067pt;}
.y68{bottom:291.718933pt;}
.y150{bottom:291.936800pt;}
.y1bb{bottom:292.922800pt;}
.yc7{bottom:295.852267pt;}
.y17c{bottom:296.996400pt;}
.y11f{bottom:298.036267pt;}
.ye1{bottom:299.718933pt;}
.y9c{bottom:303.718933pt;}
.y18d{bottom:305.718933pt;}
.y3e{bottom:306.087600pt;}
.y1ba{bottom:306.709467pt;}
.y10a{bottom:307.681067pt;}
.y67{bottom:307.718933pt;}
.y14f{bottom:308.378267pt;}
.yc6{bottom:311.718933pt;}
.y11e{bottom:312.128400pt;}
.y17b{bottom:312.996400pt;}
.y1ec{bottom:313.488667pt;}
.ye0{bottom:315.718933pt;}
.y14{bottom:318.519467pt;}
.y18c{bottom:319.718933pt;}
.y9b{bottom:319.852267pt;}
.y1b9{bottom:320.496133pt;}
.y3d{bottom:322.087600pt;}
.y14e{bottom:322.470400pt;}
.y109{bottom:323.681067pt;}
.y66{bottom:323.718933pt;}
.y1eb{bottom:327.488667pt;}
.yc5{bottom:327.585600pt;}
.y11d{bottom:328.267333pt;}
.y17a{bottom:328.996400pt;}
.ydf{bottom:331.718933pt;}
.y13{bottom:331.852800pt;}
.y18b{bottom:333.718933pt;}
.y1b8{bottom:334.282800pt;}
.y9a{bottom:335.985600pt;}
.y3c{bottom:338.087600pt;}
.y14d{bottom:338.911733pt;}
.y108{bottom:339.681067pt;}
.y65{bottom:339.718933pt;}
.y1ea{bottom:341.488667pt;}
.yc4{bottom:343.452267pt;}
.y179{bottom:344.996400pt;}
.yde{bottom:347.718933pt;}
.y1b7{bottom:348.069467pt;}
.y99{bottom:352.118933pt;}
.y14c{bottom:352.245067pt;}
.y3b{bottom:354.087600pt;}
.y1e9{bottom:355.488667pt;}
.y107{bottom:355.681067pt;}
.y64{bottom:355.718933pt;}
.yc3{bottom:359.318933pt;}
.y178{bottom:360.996400pt;}
.y11c{bottom:361.718933pt;}
.y1b6{bottom:361.856133pt;}
.ydd{bottom:363.718933pt;}
.y14b{bottom:365.578400pt;}
.y98{bottom:368.252267pt;}
.y1e8{bottom:369.488667pt;}
.y3a{bottom:370.087600pt;}
.y106{bottom:371.681067pt;}
.y63{bottom:371.718933pt;}
.y12{bottom:371.852800pt;}
.yc2{bottom:375.185600pt;}
.y1b5{bottom:375.642800pt;}
.y18a{bottom:375.718933pt;}
.y177{bottom:376.996400pt;}
.y11b{bottom:377.718933pt;}
.y14a{bottom:378.911733pt;}
.y1e7{bottom:383.488667pt;}
.y97{bottom:384.385600pt;}
.y39{bottom:386.087600pt;}
.y11{bottom:386.519467pt;}
.y105{bottom:387.681067pt;}
.y62{bottom:387.718933pt;}
.y1b4{bottom:389.429467pt;}
.y189{bottom:389.718933pt;}
.yc1{bottom:391.052267pt;}
.y176{bottom:392.996400pt;}
.y11a{bottom:393.718933pt;}
.ydc{bottom:394.385600pt;}
.y149{bottom:396.111867pt;}
.y1e6{bottom:397.488667pt;}
.y96{bottom:400.518933pt;}
.y10{bottom:401.186133pt;}
.y38{bottom:402.087600pt;}
.y1b3{bottom:403.216133pt;}
.y104{bottom:403.681067pt;}
.y61{bottom:403.718933pt;}
.yc0{bottom:406.918933pt;}
.y175{bottom:408.996400pt;}
.ydb{bottom:409.052267pt;}
.y148{bottom:409.445200pt;}
.y119{bottom:409.718933pt;}
.y1e5{bottom:411.488667pt;}
.yf{bottom:415.852800pt;}
.y95{bottom:416.652267pt;}
.y1b2{bottom:417.002800pt;}
.y36{bottom:418.087600pt;}
.y103{bottom:419.681067pt;}
.y60{bottom:419.718933pt;}
.ybf{bottom:422.785600pt;}
.y147{bottom:423.537333pt;}
.yda{bottom:423.718933pt;}
.y174{bottom:424.996400pt;}
.y1e4{bottom:425.488667pt;}
.y1b1{bottom:430.789467pt;}
.y94{bottom:432.785600pt;}
.y37{bottom:434.087600pt;}
.y102{bottom:435.681067pt;}
.y5f{bottom:435.718933pt;}
.yd9{bottom:438.385600pt;}
.ybe{bottom:438.652267pt;}
.y1e3{bottom:439.488667pt;}
.y145{bottom:439.978667pt;}
.y118{bottom:440.385600pt;}
.y173{bottom:440.996400pt;}
.y1b0{bottom:444.576133pt;}
.ye{bottom:445.186133pt;}
.y93{bottom:448.918933pt;}
.y101{bottom:451.681067pt;}
.y5e{bottom:451.718933pt;}
.y144{bottom:453.312000pt;}
.y1e2{bottom:453.488667pt;}
.ybd{bottom:454.518933pt;}
.y172{bottom:456.996400pt;}
.y1af{bottom:458.362800pt;}
.yd{bottom:459.852800pt;}
.y92{bottom:465.052267pt;}
.y146{bottom:466.645333pt;}
.y143{bottom:467.404133pt;}
.y1e1{bottom:467.488667pt;}
.y100{bottom:467.681067pt;}
.y5d{bottom:467.718933pt;}
.ybc{bottom:470.385600pt;}
.y1ae{bottom:472.149467pt;}
.yc{bottom:474.519467pt;}
.y91{bottom:481.185600pt;}
.y1e0{bottom:481.488667pt;}
.yff{bottom:483.681067pt;}
.y77{bottom:483.718933pt;}
.y141{bottom:483.845600pt;}
.y1ad{bottom:485.936133pt;}
.ybb{bottom:486.252267pt;}
.y171{bottom:488.996400pt;}
.yb{bottom:489.186133pt;}
.y1df{bottom:495.488667pt;}
.y140{bottom:497.178933pt;}
.y90{bottom:497.318933pt;}
.y35{bottom:498.087600pt;}
.yfe{bottom:499.681067pt;}
.y5c{bottom:499.718933pt;}
.y1ac{bottom:499.722800pt;}
.yba{bottom:502.118933pt;}
.y1de{bottom:509.488667pt;}
.y142{bottom:510.512267pt;}
.y13f{bottom:511.270933pt;}
.y34{bottom:512.754267pt;}
.y8f{bottom:513.452267pt;}
.y1ab{bottom:513.509467pt;}
.yfd{bottom:515.681067pt;}
.y76{bottom:515.718933pt;}
.yb9{bottom:517.985600pt;}
.y1dd{bottom:523.488667pt;}
.y1aa{bottom:527.296133pt;}
.y13e{bottom:527.712400pt;}
.ya{bottom:527.852800pt;}
.y8e{bottom:529.585600pt;}
.yfc{bottom:531.681067pt;}
.y75{bottom:531.718933pt;}
.yb8{bottom:533.852267pt;}
.y170{bottom:537.109200pt;}
.y1dc{bottom:537.488667pt;}
.y1a9{bottom:541.082800pt;}
.y33{bottom:542.087600pt;}
.y13d{bottom:545.671333pt;}
.y8d{bottom:545.718933pt;}
.yfb{bottom:547.681067pt;}
.y5b{bottom:547.718933pt;}
.yb7{bottom:549.718933pt;}
.y16f{bottom:550.442533pt;}
.y1db{bottom:551.488667pt;}
.y9{bottom:551.852800pt;}
.y1a8{bottom:554.869467pt;}
.y32{bottom:556.754267pt;}
.y8c{bottom:561.852267pt;}
.y13c{bottom:562.112667pt;}
.yfa{bottom:563.681067pt;}
.y5a{bottom:563.718933pt;}
.y16e{bottom:564.534667pt;}
.y1da{bottom:565.488667pt;}
.yb6{bottom:565.585600pt;}
.y1a7{bottom:568.656133pt;}
.y31{bottom:571.420933pt;}
.y13a{bottom:575.446000pt;}
.y8{bottom:575.852800pt;}
.y8b{bottom:577.985600pt;}
.y1d9{bottom:579.488667pt;}
.yf9{bottom:579.681067pt;}
.y59{bottom:579.718933pt;}
.y16d{bottom:580.673600pt;}
.yb5{bottom:581.452267pt;}
.y1a6{bottom:582.442800pt;}
.y30{bottom:586.087600pt;}
.y13b{bottom:588.779333pt;}
.y1d8{bottom:593.488667pt;}
.y16c{bottom:594.006933pt;}
.y8a{bottom:594.118933pt;}
.yf8{bottom:595.681067pt;}
.y58{bottom:595.718933pt;}
.y1a5{bottom:596.229467pt;}
.yb4{bottom:597.318933pt;}
.y2f{bottom:600.754267pt;}
.y139{bottom:605.979467pt;}
.y16a{bottom:607.340267pt;}
.y1d7{bottom:607.488667pt;}
.y1a4{bottom:610.016133pt;}
.y89{bottom:610.252267pt;}
.yf7{bottom:611.681067pt;}
.y57{bottom:611.718933pt;}
.yb3{bottom:613.185600pt;}
.y2e{bottom:615.420933pt;}
.y138{bottom:619.312800pt;}
.y169{bottom:620.673600pt;}
.y1d6{bottom:621.488667pt;}
.y1a3{bottom:623.802800pt;}
.y7{bottom:623.852800pt;}
.y88{bottom:626.385600pt;}
.yf6{bottom:627.681067pt;}
.y56{bottom:627.718933pt;}
.yb2{bottom:629.052267pt;}
.y2d{bottom:630.087600pt;}
.y137{bottom:632.646133pt;}
.y16b{bottom:634.006933pt;}
.y168{bottom:634.765733pt;}
.y1d5{bottom:635.488667pt;}
.y1a2{bottom:637.589467pt;}
.y87{bottom:642.518933pt;}
.yf5{bottom:643.681067pt;}
.y55{bottom:643.718933pt;}
.y2c{bottom:644.754267pt;}
.yb1{bottom:644.918933pt;}
.y6{bottom:647.852800pt;}
.y1d4{bottom:649.488667pt;}
.y136{bottom:650.605200pt;}
.y167{bottom:650.904800pt;}
.y1a1{bottom:651.376133pt;}
.y86{bottom:658.652267pt;}
.y2b{bottom:659.420933pt;}
.yf4{bottom:659.681067pt;}
.y54{bottom:659.718933pt;}
.yb0{bottom:660.785600pt;}
.y1d3{bottom:663.488667pt;}
.y166{bottom:664.238133pt;}
.y1a0{bottom:665.162800pt;}
.y135{bottom:667.046533pt;}
.y5{bottom:671.852800pt;}
.y2a{bottom:674.087600pt;}
.y85{bottom:674.785600pt;}
.yf3{bottom:675.681067pt;}
.y53{bottom:675.718933pt;}
.yaf{bottom:676.652267pt;}
.y1d2{bottom:677.488667pt;}
.y165{bottom:677.571467pt;}
.y19f{bottom:678.949467pt;}
.y134{bottom:680.379867pt;}
.y29{bottom:688.754267pt;}
.y84{bottom:690.918933pt;}
.y1d1{bottom:691.488667pt;}
.y164{bottom:691.663600pt;}
.yf2{bottom:691.680933pt;}
.y52{bottom:691.718933pt;}
.yae{bottom:692.518933pt;}
.y19e{bottom:692.736133pt;}
.y133{bottom:693.713200pt;}
.y4{bottom:695.852800pt;}
.y28{bottom:703.420933pt;}
.y1d0{bottom:705.488667pt;}
.y19d{bottom:706.522933pt;}
.y83{bottom:707.052267pt;}
.yf1{bottom:707.680933pt;}
.y51{bottom:707.718933pt;}
.y163{bottom:707.802533pt;}
.yad{bottom:708.385600pt;}
.y132{bottom:710.913467pt;}
.y27{bottom:718.087600pt;}
.y1cf{bottom:719.488667pt;}
.y19c{bottom:720.309467pt;}
.y162{bottom:721.894667pt;}
.y82{bottom:723.185600pt;}
.yf0{bottom:723.680933pt;}
.y50{bottom:723.718933pt;}
.y131{bottom:724.246800pt;}
.yac{bottom:724.252267pt;}
.y26{bottom:732.754267pt;}
.y1ce{bottom:733.488667pt;}
.y19b{bottom:734.096133pt;}
.y130{bottom:737.580133pt;}
.y161{bottom:738.033733pt;}
.y81{bottom:739.319067pt;}
.yef{bottom:739.680933pt;}
.y4f{bottom:739.718933pt;}
.yab{bottom:740.118933pt;}
.y1cd{bottom:747.488667pt;}
.y19a{bottom:747.882800pt;}
.y160{bottom:752.125867pt;}
.y12f{bottom:754.780267pt;}
.y80{bottom:755.452267pt;}
.yee{bottom:755.680933pt;}
.y4e{bottom:755.718933pt;}
.yaa{bottom:755.985733pt;}
.y1cc{bottom:761.488667pt;}
.y199{bottom:761.669467pt;}
.y12e{bottom:768.872400pt;}
.y15f{bottom:769.023600pt;}
.y7f{bottom:771.585600pt;}
.y4d{bottom:771.718933pt;}
.ya9{bottom:771.852267pt;}
.y25{bottom:774.087600pt;}
.y198{bottom:775.456133pt;}
.y1cb{bottom:775.488667pt;}
.y12d{bottom:785.162533pt;}
.yed{bottom:787.680933pt;}
.y4c{bottom:787.718933pt;}
.y24{bottom:788.754267pt;}
.y197{bottom:789.242800pt;}
.y1ca{bottom:789.275333pt;}
.y23{bottom:812.517200pt;}
.y3{bottom:821.186133pt;}
.y22{bottom:824.517200pt;}
.y21{bottom:836.517200pt;}
.y2{bottom:836.519467pt;}
.he{height:26.066667pt;}
.h15{height:30.528000pt;}
.h9{height:36.144000pt;}
.ha{height:37.312000pt;}
.h7{height:38.741333pt;}
.h12{height:40.548800pt;}
.h13{height:40.549333pt;}
.hf{height:41.162667pt;}
.h2{height:41.434667pt;}
.h3{height:43.584000pt;}
.h6{height:43.872000pt;}
.h16{height:44.736000pt;}
.h8{height:46.005333pt;}
.h11{height:48.426667pt;}
.hc{height:50.848000pt;}
.h10{height:51.184000pt;}
.hd{height:52.192000pt;}
.h4{height:77.482667pt;}
.h5{height:77.994667pt;}
.h14{height:96.917333pt;}
.hb{height:216.645410pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:81.177467pt;}
.x1{left:83.149600pt;}
.xe{left:87.988800pt;}
.x6{left:102.047200pt;}
.xb{left:104.788533pt;}
.xc{left:107.716533pt;}
.x3{left:117.165333pt;}
.x5{left:120.962933pt;}
.xf{left:126.464800pt;}
.xa{left:127.616667pt;}
.x8{left:128.595867pt;}
.x2{left:136.063067pt;}
.x9{left:151.514400pt;}
.x7{left:227.403333pt;}
.xd{left:359.388533pt;}
}

