
    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_745aea23b1a2325608d55a1d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_78cb459e1bd3f57eb6c01afb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_e3c6eac91f2d9a6f337eb3dd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_6e8103ea3936eba993ed92dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a193a2902d823b2178cb218e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.795410;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_b38d52c5ef0b3588c80a6944.woff')format("woff");}.ff6{font-family:ff6;line-height:0.802734;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_bfe0f9cce9943e03dab1e6d4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.811035;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_afd4e0014bdce7f366b0c166.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_3df8fffcfcca9bcddcbace60.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_b9a151d7ad299cf832be81e9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7da8d87210f0af862e9262a7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_7e7f4c6f2d1848b18f1b53f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_61ea741c12600ca1ff258b84.woff')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_355a1ccf3c6dd145df26c6c2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_3d1a2b6b539c66809aeb8730.woff')format("woff");}.fff{font-family:fff;line-height:0.675293;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_dab451803d7746709534c442.woff')format("woff");}.ff10{font-family:ff10;line-height:1.120605;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_cf84a082417ce6ac49032f09.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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_ee46fa2233f2353291f3c2fd.woff')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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_dab451803d7746709534c442.woff')format("woff");}.ff13{font-family:ff13;line-height:1.120605;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_360b37f56560bbbd6f22834d.woff')format("woff");}.ff14{font-family:ff14;line-height:1.311035;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_25519b9214cdb084976623c0.woff')format("woff");}.ff15{font-family:ff15;line-height:1.284668;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:ff16;src:url('chunks/assets/font_2a7f9a10db1333117e33d82c.woff')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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:ff17;src:url('chunks/assets/font_01d971fc8bda694c0170d6c1.woff')format("woff");}.ff17{font-family:ff17;line-height:1.202148;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:ff18;src:url('chunks/assets/font_b146d2eb2b1faae737c33e67.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a30e237636f88b8d6cd97fc3.woff')format("woff");}.ff19{font-family:ff19;line-height:0.693359;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:ff1a;src:url('chunks/assets/font_e6ed75eb2f30777d418175fb.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.816001px;}
.v1{vertical-align:-10.800001px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.800001px;}
.v5{vertical-align:19.998004px;}
.v2{vertical-align:21.816001px;}
.ls1a{letter-spacing:-1.332000px;}
.ls19{letter-spacing:-0.496200px;}
.ls18{letter-spacing:-0.423600px;}
.ls1d{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000019px;}
.lsb{letter-spacing:0.000024px;}
.ls13{letter-spacing:0.000046px;}
.ls6{letter-spacing:0.005867px;}
.ls8{letter-spacing:0.005899px;}
.ls7{letter-spacing:0.006015px;}
.ls12{letter-spacing:0.011916px;}
.ls14{letter-spacing:0.012004px;}
.lsa{letter-spacing:0.012017px;}
.ls11{letter-spacing:0.018028px;}
.lsc{letter-spacing:0.023956px;}
.ls5{letter-spacing:0.023958px;}
.ls9{letter-spacing:0.024010px;}
.ls10{letter-spacing:0.024051px;}
.ls16{letter-spacing:0.024100px;}
.lsd{letter-spacing:0.029942px;}
.ls1c{letter-spacing:0.048000px;}
.ls1b{letter-spacing:0.222000px;}
.ls17{letter-spacing:0.864000px;}
.lsf{letter-spacing:4.824000px;}
.lse{letter-spacing:10.800000px;}
.ls3{letter-spacing:75.024000px;}
.ls1{letter-spacing:108.000000px;}
.ls2{letter-spacing:212.688000px;}
.ls4{letter-spacing:320.688000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-58.238499px;}
.ws1c{word-spacing:-54.076420px;}
.ws2b{word-spacing:-54.000000px;}
.ws17{word-spacing:-41.603634px;}
.ws1d{word-spacing:-41.601003px;}
.ws14{word-spacing:-41.600666px;}
.ws1a{word-spacing:-41.600629px;}
.ws1{word-spacing:-41.599508px;}
.ws4{word-spacing:-41.598770px;}
.ws2d{word-spacing:-31.968000px;}
.ws27{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.641228px;}
.ws8{word-spacing:-17.641156px;}
.ws23{word-spacing:-17.641145px;}
.ws5{word-spacing:-17.641143px;}
.ws11{word-spacing:-17.641137px;}
.wsd{word-spacing:-17.641119px;}
.wsa{word-spacing:-17.641073px;}
.wsb{word-spacing:-17.640866px;}
.ws18{word-spacing:-17.640811px;}
.ws10{word-spacing:-17.640807px;}
.ws6{word-spacing:-17.640750px;}
.ws25{word-spacing:-17.640733px;}
.ws19{word-spacing:-17.640702px;}
.ws15{word-spacing:-17.640396px;}
.ws21{word-spacing:-17.640376px;}
.ws1f{word-spacing:-17.640373px;}
.ws16{word-spacing:-17.640010px;}
.ws3{word-spacing:-17.638597px;}
.ws13{word-spacing:-17.638548px;}
.ws1e{word-spacing:-17.638511px;}
.ws24{word-spacing:-17.637419px;}
.ws9{word-spacing:-17.637373px;}
.wsc{word-spacing:-17.637023px;}
.wse{word-spacing:-17.636686px;}
.ws1b{word-spacing:-17.636258px;}
.ws22{word-spacing:-17.636255px;}
.ws7{word-spacing:-17.635880px;}
.ws2f{word-spacing:-16.500000px;}
.ws32{word-spacing:-12.204000px;}
.ws28{word-spacing:-12.000000px;}
.ws30{word-spacing:-10.500000px;}
.ws20{word-spacing:-1.633528px;}
.ws31{word-spacing:-0.072000px;}
.ws26{word-spacing:0.000000px;}
.ws2e{word-spacing:92.976000px;}
.ws29{word-spacing:93.000000px;}
.ws33{word-spacing:127.032000px;}
.ws2a{word-spacing:178.176000px;}
.ws2c{word-spacing:220.800000px;}
.ws35{word-spacing:234.780000px;}
.ws34{word-spacing:235.002000px;}
.ws36{word-spacing:235.278000px;}
.ws12{word-spacing:573.952437px;}
.ws2{word-spacing:730.833694px;}
._10{margin-left:-4.824000px;}
._b{margin-left:-3.816000px;}
._a{margin-left:-2.520000px;}
._8{margin-left:-1.080000px;}
._c{width:1.368000px;}
._7{width:3.234001px;}
._15{width:4.547999px;}
._e{width:5.760000px;}
._11{width:7.272000px;}
._6{width:8.784000px;}
._f{width:9.792000px;}
._16{width:10.944000px;}
._13{width:12.312000px;}
._14{width:13.320000px;}
._d{width:14.904000px;}
._12{width:16.776000px;}
._19{width:19.728000px;}
._18{width:21.456000px;}
._20{width:22.536000px;}
._1a{width:23.760000px;}
._1b{width:24.912000px;}
._17{width:26.496000px;}
._1e{width:29.880000px;}
._1f{width:30.970541px;}
._5{width:31.998730px;}
._1d{width:33.912000px;}
._1c{width:36.360000px;}
._9{width:37.440000px;}
._21{width:108.000000px;}
._23{width:235.564416px;}
._2{width:289.303090px;}
._4{width:330.590555px;}
._0{width:372.383186px;}
._3{width:442.847196px;}
._1{width:593.135582px;}
._22{width:846.456000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.600002px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:60.480000px;}
.fsc{font-size:60.624000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:66.240000px;}
.fs8{font-size:69.000000px;}
.fsd{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:74.874001px;}
.fs0{font-size:80.634001px;}
.y0{bottom:0.000000px;}
.y11e{bottom:5.068500px;}
.y13f{bottom:5.707499px;}
.y12d{bottom:6.269999px;}
.y175{bottom:6.510000px;}
.y12b{bottom:6.832499px;}
.y119{bottom:7.394999px;}
.y135{bottom:7.957499px;}
.y138{bottom:8.519999px;}
.y108{bottom:8.594999px;}
.y165{bottom:9.030000px;}
.y12f{bottom:9.082499px;}
.y117{bottom:9.719999px;}
.y154{bottom:12.165000px;}
.y11f{bottom:14.556001px;}
.y12a{bottom:16.693500px;}
.y18a{bottom:17.475000px;}
.y32{bottom:22.339499px;}
.y11d{bottom:24.042000px;}
.y128{bottom:26.180998px;}
.y163{bottom:29.775000px;}
.y129{bottom:35.667000px;}
.y173{bottom:38.490000px;}
.y152{bottom:43.485000px;}
.y189{bottom:56.700000px;}
.y15a{bottom:65.310000px;}
.y16a{bottom:74.010000px;}
.y148{bottom:79.020000px;}
.y186{bottom:79.200000px;}
.y17a{bottom:96.750000px;}
.y15b{bottom:100.080000px;}
.y16b{bottom:103.890000px;}
.yb3{bottom:104.233486px;}
.ybc{bottom:104.770489px;}
.y93{bottom:104.770512px;}
.yc0{bottom:104.770516px;}
.y9f{bottom:104.770534px;}
.y7b{bottom:104.770552px;}
.y69{bottom:104.770557px;}
.y149{bottom:109.410000px;}
.y174{bottom:110.805000px;}
.y153{bottom:125.490000px;}
.y16c{bottom:133.770000px;}
.y15c{bottom:134.895000px;}
.y164{bottom:135.075000px;}
.y180{bottom:138.150000px;}
.y14a{bottom:139.785000px;}
.yb2{bottom:145.630497px;}
.ybb{bottom:146.167494px;}
.ybf{bottom:146.167500px;}
.y9e{bottom:146.167522px;}
.y68{bottom:146.167545px;}
.y7a{bottom:146.167550px;}
.yf6{bottom:146.242554px;}
.y90{bottom:146.262032px;}
.y17b{bottom:154.725000px;}
.y16d{bottom:163.695000px;}
.y29{bottom:167.157327px;}
.y15d{bottom:169.665000px;}
.y14b{bottom:170.130000px;}
.y188{bottom:179.025000px;}
.y181{bottom:179.580000px;}
.y28{bottom:184.437326px;}
.yb1{bottom:187.027496px;}
.y79{bottom:187.564492px;}
.ya6{bottom:187.564510px;}
.y67{bottom:187.564533px;}
.yb9{bottom:187.564556px;}
.yea{bottom:187.639532px;}
.yd9{bottom:187.639561px;}
.y187{bottom:189.525000px;}
.y16e{bottom:193.575000px;}
.y8f{bottom:199.659016px;}
.y14c{bottom:200.520000px;}
.y15e{bottom:204.480000px;}
.y17c{bottom:212.700000px;}
.y27{bottom:216.117393px;}
.y182{bottom:220.980000px;}
.y16f{bottom:223.455000px;}
.yb0{bottom:228.961498px;}
.y78{bottom:228.961521px;}
.y9d{bottom:228.961533px;}
.yb6{bottom:228.961544px;}
.y66{bottom:228.961567px;}
.ye9{bottom:229.036530px;}
.yd8{bottom:229.036566px;}
.y5c{bottom:230.074532px;}
.y14d{bottom:230.865000px;}
.y15f{bottom:239.295000px;}
.y8e{bottom:241.056004px;}
.y26{bottom:247.797386px;}
.y170{bottom:253.335000px;}
.y14e{bottom:261.255000px;}
.y183{bottom:262.425000px;}
.yaf{bottom:270.358503px;}
.ybe{bottom:270.358509px;}
.ya5{bottom:270.358520px;}
.y77{bottom:270.358532px;}
.y65{bottom:270.358555px;}
.ye8{bottom:270.433508px;}
.yfb{bottom:270.433537px;}
.yd7{bottom:270.433564px;}
.y17d{bottom:270.675000px;}
.y5b{bottom:271.452059px;}
.y160{bottom:274.065000px;}
.y25{bottom:279.477379px;}
.y8d{bottom:282.452991px;}
.y171{bottom:283.245000px;}
.y14f{bottom:291.600000px;}
.y155{bottom:302.505000px;}
.y184{bottom:303.825000px;}
.y161{bottom:308.880000px;}
.y24{bottom:311.157371px;}
.y47{bottom:311.755501px;}
.y76{bottom:311.755520px;}
.y5a{bottom:311.755531px;}
.y9c{bottom:311.755537px;}
.y64{bottom:311.755543px;}
.yb8{bottom:311.755554px;}
.ye7{bottom:311.830506px;}
.yd6{bottom:311.830524px;}
.yfa{bottom:311.830542px;}
.y172{bottom:313.125000px;}
.y150{bottom:321.990000px;}
.y8c{bottom:323.850025px;}
.y17e{bottom:328.695000px;}
.y23{bottom:342.837364px;}
.y162{bottom:343.695000px;}
.y185{bottom:345.225000px;}
.y151{bottom:352.365000px;}
.ybd{bottom:353.152508px;}
.y59{bottom:353.152519px;}
.ya4{bottom:353.152525px;}
.y75{bottom:353.152531px;}
.y46{bottom:353.152535px;}
.yb5{bottom:353.152542px;}
.y63{bottom:353.152554px;}
.yd5{bottom:353.227530px;}
.yf9{bottom:353.227540px;}
.ye6{bottom:353.227558px;}
.y8b{bottom:365.247013px;}
.y22{bottom:374.517357px;}
.y17f{bottom:386.655000px;}
.y9b{bottom:394.549519px;}
.y45{bottom:394.549523px;}
.y74{bottom:394.549530px;}
.y62{bottom:394.549541px;}
.y58{bottom:394.549553px;}
.yb7{bottom:394.549559px;}
.yd4{bottom:394.624527px;}
.yf8{bottom:394.624535px;}
.ye5{bottom:394.624563px;}
.y21{bottom:406.197349px;}
.y8a{bottom:406.644001px;}
.y9a{bottom:435.946518px;}
.y73{bottom:435.946529px;}
.y57{bottom:435.946541px;}
.yb4{bottom:435.946547px;}
.y61{bottom:435.946552px;}
.y44{bottom:435.946557px;}
.yd3{bottom:436.021534px;}
.yf5{bottom:436.021551px;}
.ye4{bottom:436.021561px;}
.y20{bottom:437.877342px;}
.y89{bottom:448.041012px;}
.y1f{bottom:462.357370px;}
.y99{bottom:477.343517px;}
.y56{bottom:477.343529px;}
.y72{bottom:477.343534px;}
.yad{bottom:477.343540px;}
.y43{bottom:477.343544px;}
.y60{bottom:477.343552px;}
.y101{bottom:477.418522px;}
.yd2{bottom:477.418539px;}
.yf4{bottom:477.418549px;}
.y88{bottom:489.438000px;}
.y1e{bottom:494.766910px;}
.y55{bottom:518.740517px;}
.y98{bottom:518.740522px;}
.yab{bottom:518.740528px;}
.y42{bottom:518.740532px;}
.yac{bottom:518.740540px;}
.y5f{bottom:518.740551px;}
.y100{bottom:518.815527px;}
.yd1{bottom:518.815537px;}
.yf3{bottom:518.815556px;}
.y87{bottom:530.835011px;}
.y1d{bottom:549.546364px;}
.yaa{bottom:560.137516px;}
.y41{bottom:560.137520px;}
.ya3{bottom:560.137539px;}
.y54{bottom:560.137550px;}
.y5e{bottom:560.137556px;}
.yff{bottom:560.212525px;}
.ye3{bottom:560.212543px;}
.yd0{bottom:560.212561px;}
.y143{bottom:571.834534px;}
.y86{bottom:572.232010px;}
.y1c{bottom:581.226338px;}
.y142{bottom:589.083032px;}
.y1b{bottom:598.506340px;}
.y97{bottom:601.534527px;}
.y53{bottom:601.534538px;}
.y40{bottom:601.534544px;}
.y92{bottom:601.534550px;}
.y5d{bottom:601.534554px;}
.yfe{bottom:601.609531px;}
.ye2{bottom:601.609549px;}
.ycf{bottom:601.609559px;}
.y141{bottom:602.337027px;}
.y85{bottom:613.629009px;}
.y140{bottom:625.587027px;}
.y1a{bottom:630.186360px;}
.y96{bottom:642.931515px;}
.y52{bottom:642.931526px;}
.y91{bottom:642.931538px;}
.y3f{bottom:642.931542px;}
.yf2{bottom:643.006519px;}
.yce{bottom:643.006536px;}
.ye1{bottom:643.006546px;}
.y13e{bottom:646.587027px;}
.y19{bottom:647.466362px;}
.y146{bottom:647.490000px;}
.y84{bottom:655.026014px;}
.y13d{bottom:667.587027px;}
.y158{bottom:668.370000px;}
.y178{bottom:676.980000px;}
.y18{bottom:679.146355px;}
.y145{bottom:681.690000px;}
.y51{bottom:684.328514px;}
.y3e{bottom:684.328520px;}
.y71{bottom:684.328526px;}
.yba{bottom:684.328537px;}
.yae{bottom:684.328548px;}
.yf1{bottom:684.403524px;}
.ye0{bottom:684.403530px;}
.ycd{bottom:684.403534px;}
.y157{bottom:690.690000px;}
.y13c{bottom:693.087049px;}
.y83{bottom:696.423012px;}
.y168{bottom:699.690000px;}
.y177{bottom:699.780000px;}
.y17{bottom:710.826347px;}
.y144{bottom:711.570000px;}
.y147{bottom:711.720000px;}
.y13b{bottom:716.337049px;}
.y176{bottom:719.880000px;}
.y156{bottom:720.570000px;}
.y159{bottom:720.720000px;}
.y167{bottom:722.010000px;}
.y70{bottom:725.725513px;}
.y3d{bottom:725.725518px;}
.ya9{bottom:725.725531px;}
.ya2{bottom:725.725536px;}
.y50{bottom:725.725548px;}
.yf0{bottom:725.800522px;}
.ycc{bottom:725.800535px;}
.yfd{bottom:725.800541px;}
.y179{bottom:736.500000px;}
.y82{bottom:736.925320px;}
.y81{bottom:740.425564px;}
.y13a{bottom:742.962049px;}
.y7e{bottom:748.425808px;}
.y16{bottom:749.706320px;}
.y7d{bottom:751.926052px;}
.y166{bottom:751.935000px;}
.y7c{bottom:752.242530px;}
.y169{bottom:752.400000px;}
.y80{bottom:766.425808px;}
.y15{bottom:766.986327px;}
.y95{bottom:767.122524px;}
.ya8{bottom:767.122529px;}
.y4f{bottom:767.122536px;}
.y3c{bottom:767.122541px;}
.y6f{bottom:767.122547px;}
.ycb{bottom:767.197533px;}
.yef{bottom:767.197546px;}
.y139{bottom:769.587049px;}
.y7f{bottom:769.926052px;}
.y125{bottom:777.036049px;}
.y14{bottom:784.266310px;}
.y124{bottom:794.284547px;}
.y137{bottom:796.212049px;}
.y13{bottom:801.546316px;}
.y123{bottom:807.538536px;}
.y4e{bottom:808.519524px;}
.y6e{bottom:808.519535px;}
.y3b{bottom:808.519539px;}
.yca{bottom:808.594534px;}
.y105{bottom:808.594540px;}
.yee{bottom:808.594544px;}
.y12{bottom:818.826323px;}
.y136{bottom:822.837049px;}
.y122{bottom:831.913548px;}
.y11{bottom:836.106318px;}
.y112{bottom:844.531540px;}
.y134{bottom:846.087049px;}
.y3a{bottom:849.916523px;}
.yc1{bottom:849.916527px;}
.y4d{bottom:849.916534px;}
.ya1{bottom:849.916540px;}
.yfc{bottom:849.991528px;}
.yc9{bottom:849.991532px;}
.yed{bottom:849.991539px;}
.y104{bottom:849.991545px;}
.y10{bottom:853.386324px;}
.y121{bottom:856.288548px;}
.y111{bottom:861.780041px;}
.yf{bottom:870.666319px;}
.y133{bottom:871.587049px;}
.y110{bottom:879.028542px;}
.y30{bottom:879.388533px;}
.y120{bottom:880.663548px;}
.ye{bottom:887.946326px;}
.y4c{bottom:891.313522px;}
.y39{bottom:891.313528px;}
.y6d{bottom:891.313534px;}
.ya0{bottom:891.313538px;}
.ydf{bottom:891.388533px;}
.yc8{bottom:891.388538px;}
.y103{bottom:891.388543px;}
.y132{bottom:894.837038px;}
.y10f{bottom:896.277040px;}
.y11c{bottom:905.038542px;}
.yd{bottom:905.226321px;}
.y10e{bottom:909.531040px;}
.y131{bottom:918.087044px;}
.y2f{bottom:920.785531px;}
.yc{bottom:922.506316px;}
.y6c{bottom:932.710522px;}
.y38{bottom:932.710526px;}
.y4b{bottom:932.710533px;}
.ya7{bottom:932.710539px;}
.y10d{bottom:932.781040px;}
.yde{bottom:932.785531px;}
.yf7{bottom:932.785538px;}
.yc7{bottom:932.785543px;}
.yb{bottom:939.786322px;}
.y11b{bottom:943.735542px;}
.y10c{bottom:956.031040px;}
.y130{bottom:956.784044px;}
.ya{bottom:957.066323px;}
.y2e{bottom:962.182541px;}
.y11a{bottom:968.110542px;}
.y4a{bottom:974.107532px;}
.y37{bottom:974.107537px;}
.y102{bottom:974.182537px;}
.yc6{bottom:974.182541px;}
.ydd{bottom:974.182543px;}
.y9{bottom:974.346323px;}
.y10b{bottom:979.281040px;}
.y12e{bottom:981.159039px;}
.y18d{bottom:982.126505px;}
.y8{bottom:991.626321px;}
.y118{bottom:992.485542px;}
.y10a{bottom:1002.531040px;}
.y2d{bottom:1003.579542px;}
.y7{bottom:1008.906320px;}
.y12c{bottom:1008.909039px;}
.y49{bottom:1015.504532px;}
.y94{bottom:1015.504536px;}
.y36{bottom:1015.504538px;}
.yc5{bottom:1015.579536px;}
.ydc{bottom:1015.579541px;}
.yec{bottom:1015.579542px;}
.y116{bottom:1016.860542px;}
.y18c{bottom:1023.523503px;}
.y109{bottom:1025.781040px;}
.y127{bottom:1031.034039px;}
.y6{bottom:1033.386331px;}
.y2c{bottom:1044.976540px;}
.y115{bottom:1046.629536px;}
.y107{bottom:1049.031040px;}
.y126{bottom:1054.284039px;}
.y6b{bottom:1056.901531px;}
.y35{bottom:1056.901535px;}
.y48{bottom:1056.901537px;}
.ydb{bottom:1056.976536px;}
.yeb{bottom:1056.976540px;}
.yc4{bottom:1056.976542px;}
.y18b{bottom:1064.920502px;}
.y5{bottom:1069.816841px;}
.y106{bottom:1077.675040px;}
.y114{bottom:1077.676538px;}
.y2b{bottom:1086.373539px;}
.y34{bottom:1098.298535px;}
.y6a{bottom:1098.298536px;}
.yc3{bottom:1098.373539px;}
.yda{bottom:1098.373541px;}
.y4{bottom:1101.496838px;}
.y113{bottom:1108.723539px;}
.y3{bottom:1118.776840px;}
.y33{bottom:1139.695534px;}
.y2a{bottom:1139.770539px;}
.y2{bottom:1150.456838px;}
.yc2{bottom:1173.129035px;}
.y31{bottom:1183.704037px;}
.y1{bottom:1189.897075px;}
.h25{height:23.250000px;}
.h1f{height:25.125000px;}
.h17{height:25.500000px;}
.h19{height:26.250000px;}
.h1a{height:26.625000px;}
.h1c{height:27.375000px;}
.h24{height:27.750000px;}
.h21{height:28.500000px;}
.h23{height:28.875000px;}
.h22{height:29.625000px;}
.h20{height:30.000000px;}
.h12{height:36.413086px;}
.h8{height:36.620999px;}
.h1b{height:40.947001px;}
.h9{height:40.986328px;}
.h3{height:41.934377px;}
.h2{height:41.962502px;}
.h18{height:44.730469px;}
.h1e{height:45.826172px;}
.h10{height:48.550781px;}
.h38{height:48.796875px;}
.h6{height:49.992188px;}
.hb{height:52.646484px;}
.h36{height:53.709961px;}
.h4{height:54.510320px;}
.h7{height:56.390625px;}
.ha{height:57.911133px;}
.h1{height:58.703757px;}
.h2e{height:59.499141px;}
.h37{height:59.677734px;}
.h2b{height:60.155156px;}
.h2c{height:60.298383px;}
.he{height:63.175781px;}
.hd{height:63.933174px;}
.hc{height:63.933188px;}
.h1d{height:64.197001px;}
.h2d{height:65.010938px;}
.h27{height:65.884219px;}
.h34{height:69.226172px;}
.h29{height:70.664062px;}
.h33{height:71.265234px;}
.h28{height:72.562500px;}
.h32{height:74.004654px;}
.h30{height:329.400000px;}
.h2f{height:361.080000px;}
.h2a{height:370.080000px;}
.h35{height:407.100000px;}
.h16{height:750.174445px;}
.h15{height:758.091064px;}
.h11{height:761.674933px;}
.hf{height:769.591553px;}
.h14{height:779.674933px;}
.h13{height:787.591553px;}
.h26{height:1188.000000px;}
.h31{height:1262.699982px;}
.h5{height:1262.850037px;}
.h0{height:1263.000000px;}
.wb{width:21.124125px;}
.wc{width:22.339499px;}
.w6{width:22.383000px;}
.w9{width:28.165501px;}
.w5{width:29.370000px;}
.w8{width:30.247876px;}
.w7{width:31.822500px;}
.wa{width:40.834126px;}
.w1b{width:50.324999px;}
.w17{width:54.225002px;}
.w1a{width:57.675001px;}
.w1c{width:78.750000px;}
.w18{width:88.875000px;}
.w10{width:109.350002px;}
.w13{width:118.950005px;}
.w11{width:119.924995px;}
.w14{width:131.625000px;}
.wf{width:142.274998px;}
.w16{width:159.975002px;}
.we{width:169.500000px;}
.w15{width:180.750000px;}
.w19{width:185.174995px;}
.w12{width:311.325005px;}
.wd{width:365.549995px;}
.w21{width:673.920000px;}
.w20{width:689.760000px;}
.w1f{width:691.920000px;}
.w24{width:785.100000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.w4{width:892.949947px;}
.w2{width:892.949982px;}
.w23{width:893.100000px;}
.w22{width:893.100037px;}
.w3{width:893.250000px;}
.w1e{width:917.999986px;}
.w1d{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:6.890625px;}
.xa{left:9.187500px;}
.x3b{left:10.951500px;}
.x3f{left:13.084500px;}
.x2{left:14.399998px;}
.x32{left:15.882000px;}
.x38{left:16.926000px;}
.x3d{left:18.525000px;}
.x3c{left:19.776000px;}
.x26{left:21.004500px;}
.x3e{left:22.524000px;}
.x24{left:25.396500px;}
.x37{left:26.819999px;}
.x22{left:28.332000px;}
.x43{left:33.840000px;}
.x2c{left:35.568001px;}
.x25{left:36.871500px;}
.x2d{left:39.337501px;}
.x23{left:41.859001px;}
.x20{left:43.669499px;}
.x2f{left:45.525001px;}
.x28{left:47.587501px;}
.x2a{left:48.933000px;}
.x76{left:50.145000px;}
.x2e{left:51.712501px;}
.x1{left:54.000000px;}
.x30{left:55.500001px;}
.x8{left:56.850002px;}
.x7{left:64.350002px;}
.x6{left:71.850002px;}
.x1c{left:78.075005px;}
.x33{left:82.124998px;}
.x1e{left:87.008999px;}
.x40{left:89.839500px;}
.x4{left:92.212503px;}
.x77{left:98.640000px;}
.x61{left:100.905000px;}
.x44{left:111.525000px;}
.x78{left:120.630000px;}
.x62{left:123.585000px;}
.x1f{left:126.075005px;}
.x42{left:127.475986px;}
.x45{left:130.290000px;}
.x79{left:142.635000px;}
.x63{left:146.265000px;}
.x46{left:149.010000px;}
.x5f{left:161.670000px;}
.x7a{left:164.625000px;}
.x47{left:167.760000px;}
.x64{left:168.990000px;}
.x48{left:186.480000px;}
.x65{left:191.670000px;}
.x49{left:205.230000px;}
.x7b{left:208.620000px;}
.x66{left:214.350000px;}
.x4a{left:223.950000px;}
.x7c{left:230.580000px;}
.x67{left:237.030000px;}
.x3{left:241.109985px;}
.x4b{left:242.670000px;}
.x7d{left:252.570000px;}
.x68{left:259.710000px;}
.x4c{left:261.435000px;}
.x7e{left:274.575000px;}
.x4d{left:280.155000px;}
.x34{left:283.050007px;}
.x1d{left:292.575005px;}
.x7f{left:296.565000px;}
.x4e{left:298.905000px;}
.x69{left:305.070000px;}
.x4f{left:317.625000px;}
.x8d{left:326.085000px;}
.x6a{left:327.750000px;}
.x35{left:334.275009px;}
.x50{left:336.390000px;}
.x80{left:340.560000px;}
.x6b{left:350.430000px;}
.x51{left:355.110000px;}
.x90{left:361.080000px;}
.x81{left:362.550000px;}
.x9{left:368.977494px;}
.x52{left:373.860000px;}
.xb{left:382.269369px;}
.x82{left:384.510000px;}
.xd{left:392.538111px;}
.x6c{left:395.790000px;}
.x83{left:406.515000px;}
.xe{left:409.949477px;}
.x53{left:411.330000px;}
.x6d{left:418.470000px;}
.x36{left:420.150009px;}
.xf{left:423.241352px;}
.x84{left:428.505000px;}
.x54{left:430.050000px;}
.x15{left:432.539404px;}
.x27{left:434.400009px;}
.x10{left:441.374970px;}
.x16{left:445.831279px;}
.x55{left:448.770000px;}
.x85{left:450.510000px;}
.x11{left:455.129338px;}
.x6e{left:463.830000px;}
.x12{left:468.421213px;}
.x86{left:472.500000px;}
.x17{left:475.857056px;}
.x18{left:486.172832px;}
.x87{left:494.490000px;}
.x13{left:498.446989px;}
.x56{left:505.005000px;}
.x14{left:508.762765px;}
.x88{left:516.450000px;}
.x19{left:522.932503px;}
.x6f{left:531.870000px;}
.x21{left:538.200005px;}
.x57{left:542.490000px;}
.x29{left:551.325005px;}
.x70{left:554.550000px;}
.x58{left:561.210000px;}
.x71{left:577.230000px;}
.x59{left:579.960000px;}
.x89{left:582.450000px;}
.x5a{left:598.680000px;}
.x72{left:599.910000px;}
.x31{left:602.325005px;}
.x8a{left:604.440000px;}
.x5b{left:617.430000px;}
.x73{left:622.590000px;}
.x8b{left:626.430000px;}
.x5c{left:636.150000px;}
.x74{left:645.270000px;}
.x8c{left:648.435000px;}
.x5d{left:654.915000px;}
.x39{left:657.000023px;}
.x2b{left:667.274986px;}
.x5e{left:673.635000px;}
.x3a{left:704.325005px;}
.x8e{left:713.850000px;}
.x1b{left:750.169487px;}
.x8f{left:762.945000px;}
.x1a{left:771.394512px;}
.x5{left:778.998013px;}
.x75{left:801.329986px;}
.x60{left:817.169986px;}
.x41{left:819.329986px;}
@media print{
.v3{vertical-align:-19.392001pt;}
.v1{vertical-align:-9.600001pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.600001pt;}
.v5{vertical-align:17.776004pt;}
.v2{vertical-align:19.392001pt;}
.ls1a{letter-spacing:-1.184000pt;}
.ls19{letter-spacing:-0.441067pt;}
.ls18{letter-spacing:-0.376533pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000017pt;}
.lsb{letter-spacing:0.000021pt;}
.ls13{letter-spacing:0.000041pt;}
.ls6{letter-spacing:0.005215pt;}
.ls8{letter-spacing:0.005244pt;}
.ls7{letter-spacing:0.005347pt;}
.ls12{letter-spacing:0.010592pt;}
.ls14{letter-spacing:0.010671pt;}
.lsa{letter-spacing:0.010682pt;}
.ls11{letter-spacing:0.016025pt;}
.lsc{letter-spacing:0.021294pt;}
.ls5{letter-spacing:0.021296pt;}
.ls9{letter-spacing:0.021343pt;}
.ls10{letter-spacing:0.021378pt;}
.ls16{letter-spacing:0.021422pt;}
.lsd{letter-spacing:0.026615pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls1b{letter-spacing:0.197333pt;}
.ls17{letter-spacing:0.768000pt;}
.lsf{letter-spacing:4.288000pt;}
.lse{letter-spacing:9.600000pt;}
.ls3{letter-spacing:66.688000pt;}
.ls1{letter-spacing:96.000000pt;}
.ls2{letter-spacing:189.056000pt;}
.ls4{letter-spacing:285.056000pt;}
.ws0{word-spacing:-51.767555pt;}
.ws1c{word-spacing:-48.067929pt;}
.ws2b{word-spacing:-48.000000pt;}
.ws17{word-spacing:-36.981008pt;}
.ws1d{word-spacing:-36.978670pt;}
.ws14{word-spacing:-36.978369pt;}
.ws1a{word-spacing:-36.978337pt;}
.ws1{word-spacing:-36.977340pt;}
.ws4{word-spacing:-36.976685pt;}
.ws2d{word-spacing:-28.416000pt;}
.ws27{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.681091pt;}
.ws8{word-spacing:-15.681027pt;}
.ws23{word-spacing:-15.681018pt;}
.ws5{word-spacing:-15.681016pt;}
.ws11{word-spacing:-15.681011pt;}
.wsd{word-spacing:-15.680995pt;}
.wsa{word-spacing:-15.680953pt;}
.wsb{word-spacing:-15.680769pt;}
.ws18{word-spacing:-15.680721pt;}
.ws10{word-spacing:-15.680718pt;}
.ws6{word-spacing:-15.680667pt;}
.ws25{word-spacing:-15.680652pt;}
.ws19{word-spacing:-15.680624pt;}
.ws15{word-spacing:-15.680352pt;}
.ws21{word-spacing:-15.680334pt;}
.ws1f{word-spacing:-15.680332pt;}
.ws16{word-spacing:-15.680009pt;}
.ws3{word-spacing:-15.678753pt;}
.ws13{word-spacing:-15.678709pt;}
.ws1e{word-spacing:-15.678677pt;}
.ws24{word-spacing:-15.677706pt;}
.ws9{word-spacing:-15.677665pt;}
.wsc{word-spacing:-15.677353pt;}
.wse{word-spacing:-15.677055pt;}
.ws1b{word-spacing:-15.676674pt;}
.ws22{word-spacing:-15.676671pt;}
.ws7{word-spacing:-15.676338pt;}
.ws2f{word-spacing:-14.666667pt;}
.ws32{word-spacing:-10.848000pt;}
.ws28{word-spacing:-10.666667pt;}
.ws30{word-spacing:-9.333333pt;}
.ws20{word-spacing:-1.452025pt;}
.ws31{word-spacing:-0.064000pt;}
.ws26{word-spacing:0.000000pt;}
.ws2e{word-spacing:82.645333pt;}
.ws29{word-spacing:82.666667pt;}
.ws33{word-spacing:112.917333pt;}
.ws2a{word-spacing:158.378667pt;}
.ws2c{word-spacing:196.266667pt;}
.ws35{word-spacing:208.693333pt;}
.ws34{word-spacing:208.890667pt;}
.ws36{word-spacing:209.136000pt;}
.ws12{word-spacing:510.179944pt;}
.ws2{word-spacing:649.629950pt;}
._10{margin-left:-4.288000pt;}
._b{margin-left:-3.392000pt;}
._a{margin-left:-2.240000pt;}
._8{margin-left:-0.960000pt;}
._c{width:1.216000pt;}
._7{width:2.874667pt;}
._15{width:4.042665pt;}
._e{width:5.120000pt;}
._11{width:6.464000pt;}
._6{width:7.808000pt;}
._f{width:8.704000pt;}
._16{width:9.728000pt;}
._13{width:10.944000pt;}
._14{width:11.840000pt;}
._d{width:13.248000pt;}
._12{width:14.912000pt;}
._19{width:17.536000pt;}
._18{width:19.072000pt;}
._20{width:20.032000pt;}
._1a{width:21.120000pt;}
._1b{width:22.144000pt;}
._17{width:23.552000pt;}
._1e{width:26.560000pt;}
._1f{width:27.529370pt;}
._5{width:28.443315pt;}
._1d{width:30.144000pt;}
._1c{width:32.320000pt;}
._9{width:33.280000pt;}
._21{width:96.000000pt;}
._23{width:209.390592pt;}
._2{width:257.158302pt;}
._4{width:293.858271pt;}
._0{width:331.007276pt;}
._3{width:393.641952pt;}
._1{width:527.231628pt;}
._22{width:752.405333pt;}
.fs9{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:51.200002pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:53.760000pt;}
.fsc{font-size:53.888000pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:58.880000pt;}
.fs8{font-size:61.333333pt;}
.fsd{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:66.554667pt;}
.fs0{font-size:71.674667pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:4.505333pt;}
.y13f{bottom:5.073332pt;}
.y12d{bottom:5.573332pt;}
.y175{bottom:5.786667pt;}
.y12b{bottom:6.073332pt;}
.y119{bottom:6.573332pt;}
.y135{bottom:7.073332pt;}
.y138{bottom:7.573332pt;}
.y108{bottom:7.639999pt;}
.y165{bottom:8.026667pt;}
.y12f{bottom:8.073332pt;}
.y117{bottom:8.639999pt;}
.y154{bottom:10.813333pt;}
.y11f{bottom:12.938667pt;}
.y12a{bottom:14.838666pt;}
.y18a{bottom:15.533333pt;}
.y32{bottom:19.857333pt;}
.y11d{bottom:21.370667pt;}
.y128{bottom:23.271998pt;}
.y163{bottom:26.466667pt;}
.y129{bottom:31.704000pt;}
.y173{bottom:34.213333pt;}
.y152{bottom:38.653333pt;}
.y189{bottom:50.400000pt;}
.y15a{bottom:58.053333pt;}
.y16a{bottom:65.786667pt;}
.y148{bottom:70.240000pt;}
.y186{bottom:70.400000pt;}
.y17a{bottom:86.000000pt;}
.y15b{bottom:88.960000pt;}
.y16b{bottom:92.346667pt;}
.yb3{bottom:92.651988pt;}
.ybc{bottom:93.129323pt;}
.y93{bottom:93.129344pt;}
.yc0{bottom:93.129347pt;}
.y9f{bottom:93.129364pt;}
.y7b{bottom:93.129379pt;}
.y69{bottom:93.129384pt;}
.y149{bottom:97.253333pt;}
.y174{bottom:98.493333pt;}
.y153{bottom:111.546667pt;}
.y16c{bottom:118.906667pt;}
.y15c{bottom:119.906667pt;}
.y164{bottom:120.066667pt;}
.y180{bottom:122.800000pt;}
.y14a{bottom:124.253333pt;}
.yb2{bottom:129.449331pt;}
.ybb{bottom:129.926661pt;}
.ybf{bottom:129.926666pt;}
.y9e{bottom:129.926687pt;}
.y68{bottom:129.926707pt;}
.y7a{bottom:129.926711pt;}
.yf6{bottom:129.993381pt;}
.y90{bottom:130.010695pt;}
.y17b{bottom:137.533333pt;}
.y16d{bottom:145.506667pt;}
.y29{bottom:148.584291pt;}
.y15d{bottom:150.813333pt;}
.y14b{bottom:151.226667pt;}
.y188{bottom:159.133333pt;}
.y181{bottom:159.626667pt;}
.y28{bottom:163.944290pt;}
.yb1{bottom:166.246663pt;}
.y79{bottom:166.723993pt;}
.ya6{bottom:166.724009pt;}
.y67{bottom:166.724030pt;}
.yb9{bottom:166.724050pt;}
.yea{bottom:166.790695pt;}
.yd9{bottom:166.790721pt;}
.y187{bottom:168.466667pt;}
.y16e{bottom:172.066667pt;}
.y8f{bottom:177.474681pt;}
.y14c{bottom:178.240000pt;}
.y15e{bottom:181.760000pt;}
.y17c{bottom:189.066667pt;}
.y27{bottom:192.104350pt;}
.y182{bottom:196.426667pt;}
.y16f{bottom:198.626667pt;}
.yb0{bottom:203.521332pt;}
.y78{bottom:203.521352pt;}
.y9d{bottom:203.521362pt;}
.yb6{bottom:203.521372pt;}
.y66{bottom:203.521393pt;}
.ye9{bottom:203.588027pt;}
.yd8{bottom:203.588058pt;}
.y5c{bottom:204.510695pt;}
.y14d{bottom:205.213333pt;}
.y15f{bottom:212.706667pt;}
.y8e{bottom:214.272003pt;}
.y26{bottom:220.264343pt;}
.y170{bottom:225.186667pt;}
.y14e{bottom:232.226667pt;}
.y183{bottom:233.266667pt;}
.yaf{bottom:240.318670pt;}
.ybe{bottom:240.318675pt;}
.ya5{bottom:240.318685pt;}
.y77{bottom:240.318695pt;}
.y65{bottom:240.318715pt;}
.ye8{bottom:240.385340pt;}
.yfb{bottom:240.385366pt;}
.yd7{bottom:240.385390pt;}
.y17d{bottom:240.600000pt;}
.y5b{bottom:241.290719pt;}
.y160{bottom:243.613333pt;}
.y25{bottom:248.424337pt;}
.y8d{bottom:251.069326pt;}
.y171{bottom:251.773333pt;}
.y14f{bottom:259.200000pt;}
.y155{bottom:268.893333pt;}
.y184{bottom:270.066667pt;}
.y161{bottom:274.560000pt;}
.y24{bottom:276.584330pt;}
.y47{bottom:277.116001pt;}
.y76{bottom:277.116018pt;}
.y5a{bottom:277.116028pt;}
.y9c{bottom:277.116033pt;}
.y64{bottom:277.116038pt;}
.yb8{bottom:277.116048pt;}
.ye7{bottom:277.182672pt;}
.yd6{bottom:277.182688pt;}
.yfa{bottom:277.182704pt;}
.y172{bottom:278.333333pt;}
.y150{bottom:286.213333pt;}
.y8c{bottom:287.866689pt;}
.y17e{bottom:292.173333pt;}
.y23{bottom:304.744324pt;}
.y162{bottom:305.506667pt;}
.y185{bottom:306.866667pt;}
.y151{bottom:313.213333pt;}
.ybd{bottom:313.913340pt;}
.y59{bottom:313.913350pt;}
.ya4{bottom:313.913355pt;}
.y75{bottom:313.913361pt;}
.y46{bottom:313.913364pt;}
.yb5{bottom:313.913371pt;}
.y63{bottom:313.913381pt;}
.yd5{bottom:313.980026pt;}
.yf9{bottom:313.980035pt;}
.ye6{bottom:313.980052pt;}
.y8b{bottom:324.664012pt;}
.y22{bottom:332.904317pt;}
.y17f{bottom:343.693333pt;}
.y9b{bottom:350.710683pt;}
.y45{bottom:350.710687pt;}
.y74{bottom:350.710693pt;}
.y62{bottom:350.710704pt;}
.y58{bottom:350.710714pt;}
.yb7{bottom:350.710719pt;}
.yd4{bottom:350.777358pt;}
.yf8{bottom:350.777364pt;}
.ye5{bottom:350.777390pt;}
.y21{bottom:361.064311pt;}
.y8a{bottom:361.461334pt;}
.y9a{bottom:387.508016pt;}
.y73{bottom:387.508026pt;}
.y57{bottom:387.508036pt;}
.yb4{bottom:387.508041pt;}
.y61{bottom:387.508046pt;}
.y44{bottom:387.508050pt;}
.yd3{bottom:387.574697pt;}
.yf5{bottom:387.574712pt;}
.ye4{bottom:387.574721pt;}
.y20{bottom:389.224304pt;}
.y89{bottom:398.258677pt;}
.y1f{bottom:410.984329pt;}
.y99{bottom:424.305349pt;}
.y56{bottom:424.305359pt;}
.y72{bottom:424.305364pt;}
.yad{bottom:424.305369pt;}
.y43{bottom:424.305373pt;}
.y60{bottom:424.305379pt;}
.y101{bottom:424.372019pt;}
.yd2{bottom:424.372035pt;}
.yf4{bottom:424.372044pt;}
.y88{bottom:435.056000pt;}
.y1e{bottom:439.792809pt;}
.y55{bottom:461.102681pt;}
.y98{bottom:461.102687pt;}
.yab{bottom:461.102692pt;}
.y42{bottom:461.102695pt;}
.yac{bottom:461.102702pt;}
.y5f{bottom:461.102712pt;}
.y100{bottom:461.169357pt;}
.yd1{bottom:461.169366pt;}
.yf3{bottom:461.169383pt;}
.y87{bottom:471.853343pt;}
.y1d{bottom:488.485657pt;}
.yaa{bottom:497.900014pt;}
.y41{bottom:497.900018pt;}
.ya3{bottom:497.900035pt;}
.y54{bottom:497.900045pt;}
.y5e{bottom:497.900050pt;}
.yff{bottom:497.966689pt;}
.ye3{bottom:497.966705pt;}
.yd0{bottom:497.966721pt;}
.y143{bottom:508.297363pt;}
.y86{bottom:508.650675pt;}
.y1c{bottom:516.645634pt;}
.y142{bottom:523.629361pt;}
.y1b{bottom:532.005635pt;}
.y97{bottom:534.697357pt;}
.y53{bottom:534.697367pt;}
.y40{bottom:534.697372pt;}
.y92{bottom:534.697378pt;}
.y5d{bottom:534.697381pt;}
.yfe{bottom:534.764028pt;}
.ye2{bottom:534.764043pt;}
.ycf{bottom:534.764052pt;}
.y141{bottom:535.410690pt;}
.y85{bottom:545.448008pt;}
.y140{bottom:556.077357pt;}
.y1a{bottom:560.165653pt;}
.y96{bottom:571.494680pt;}
.y52{bottom:571.494690pt;}
.y91{bottom:571.494700pt;}
.y3f{bottom:571.494704pt;}
.yf2{bottom:571.561350pt;}
.yce{bottom:571.561366pt;}
.ye1{bottom:571.561375pt;}
.y13e{bottom:574.744024pt;}
.y19{bottom:575.525655pt;}
.y146{bottom:575.546667pt;}
.y84{bottom:582.245346pt;}
.y13d{bottom:593.410690pt;}
.y158{bottom:594.106667pt;}
.y178{bottom:601.760000pt;}
.y18{bottom:603.685648pt;}
.y145{bottom:605.946667pt;}
.y51{bottom:608.292013pt;}
.y3e{bottom:608.292018pt;}
.y71{bottom:608.292023pt;}
.yba{bottom:608.292033pt;}
.yae{bottom:608.292043pt;}
.yf1{bottom:608.358688pt;}
.ye0{bottom:608.358693pt;}
.ycd{bottom:608.358697pt;}
.y157{bottom:613.946667pt;}
.y13c{bottom:616.077377pt;}
.y83{bottom:619.042678pt;}
.y168{bottom:621.946667pt;}
.y177{bottom:622.026667pt;}
.y17{bottom:631.845642pt;}
.y144{bottom:632.506667pt;}
.y147{bottom:632.640000pt;}
.y13b{bottom:636.744044pt;}
.y176{bottom:639.893333pt;}
.y156{bottom:640.506667pt;}
.y159{bottom:640.640000pt;}
.y167{bottom:641.786667pt;}
.y70{bottom:645.089345pt;}
.y3d{bottom:645.089349pt;}
.ya9{bottom:645.089361pt;}
.ya2{bottom:645.089366pt;}
.y50{bottom:645.089376pt;}
.yf0{bottom:645.156020pt;}
.ycc{bottom:645.156031pt;}
.yfd{bottom:645.156036pt;}
.y179{bottom:654.666667pt;}
.y82{bottom:655.044729pt;}
.y81{bottom:658.156057pt;}
.y13a{bottom:660.410711pt;}
.y7e{bottom:665.267385pt;}
.y16{bottom:666.405618pt;}
.y7d{bottom:668.378713pt;}
.y166{bottom:668.386667pt;}
.y7c{bottom:668.660027pt;}
.y169{bottom:668.800000pt;}
.y80{bottom:681.267385pt;}
.y15{bottom:681.765624pt;}
.y95{bottom:681.886688pt;}
.ya8{bottom:681.886692pt;}
.y4f{bottom:681.886698pt;}
.y3c{bottom:681.886703pt;}
.y6f{bottom:681.886709pt;}
.ycb{bottom:681.953363pt;}
.yef{bottom:681.953374pt;}
.y139{bottom:684.077377pt;}
.y7f{bottom:684.378713pt;}
.y125{bottom:690.698710pt;}
.y14{bottom:697.125609pt;}
.y124{bottom:706.030708pt;}
.y137{bottom:707.744044pt;}
.y13{bottom:712.485615pt;}
.y123{bottom:717.812032pt;}
.y4e{bottom:718.684021pt;}
.y6e{bottom:718.684031pt;}
.y3b{bottom:718.684035pt;}
.yca{bottom:718.750697pt;}
.y105{bottom:718.750702pt;}
.yee{bottom:718.750706pt;}
.y12{bottom:727.845620pt;}
.y136{bottom:731.410711pt;}
.y122{bottom:739.478709pt;}
.y11{bottom:743.205616pt;}
.y112{bottom:750.694702pt;}
.y134{bottom:752.077377pt;}
.y3a{bottom:755.481354pt;}
.yc1{bottom:755.481358pt;}
.y4d{bottom:755.481364pt;}
.ya1{bottom:755.481369pt;}
.yfc{bottom:755.548024pt;}
.yc9{bottom:755.548028pt;}
.yed{bottom:755.548035pt;}
.y104{bottom:755.548040pt;}
.y10{bottom:758.565622pt;}
.y121{bottom:761.145376pt;}
.y111{bottom:766.026703pt;}
.yf{bottom:773.925617pt;}
.y133{bottom:774.744044pt;}
.y110{bottom:781.358704pt;}
.y30{bottom:781.678696pt;}
.y120{bottom:782.812042pt;}
.ye{bottom:789.285623pt;}
.y4c{bottom:792.278687pt;}
.y39{bottom:792.278692pt;}
.y6d{bottom:792.278697pt;}
.ya0{bottom:792.278700pt;}
.ydf{bottom:792.345362pt;}
.yc8{bottom:792.345367pt;}
.y103{bottom:792.345371pt;}
.y132{bottom:795.410700pt;}
.y10f{bottom:796.690702pt;}
.y11c{bottom:804.478704pt;}
.yd{bottom:804.645618pt;}
.y10e{bottom:808.472036pt;}
.y131{bottom:816.077372pt;}
.y2f{bottom:818.476027pt;}
.yc{bottom:820.005614pt;}
.y6c{bottom:829.076019pt;}
.y38{bottom:829.076023pt;}
.y4b{bottom:829.076029pt;}
.ya7{bottom:829.076035pt;}
.y10d{bottom:829.138702pt;}
.yde{bottom:829.142694pt;}
.yf7{bottom:829.142700pt;}
.yc7{bottom:829.142705pt;}
.yb{bottom:835.365620pt;}
.y11b{bottom:838.876038pt;}
.y10c{bottom:849.805369pt;}
.y130{bottom:850.474706pt;}
.ya{bottom:850.725620pt;}
.y2e{bottom:855.273370pt;}
.y11a{bottom:860.542704pt;}
.y4a{bottom:865.873362pt;}
.y37{bottom:865.873366pt;}
.y102{bottom:865.940033pt;}
.yc6{bottom:865.940037pt;}
.ydd{bottom:865.940038pt;}
.y9{bottom:866.085621pt;}
.y10b{bottom:870.472036pt;}
.y12e{bottom:872.141368pt;}
.y18d{bottom:873.001338pt;}
.y8{bottom:881.445619pt;}
.y118{bottom:882.209371pt;}
.y10a{bottom:891.138702pt;}
.y2d{bottom:892.070704pt;}
.y7{bottom:896.805618pt;}
.y12c{bottom:896.808034pt;}
.y49{bottom:902.670695pt;}
.y94{bottom:902.670699pt;}
.y36{bottom:902.670700pt;}
.yc5{bottom:902.737366pt;}
.ydc{bottom:902.737370pt;}
.yec{bottom:902.737371pt;}
.y116{bottom:903.876038pt;}
.y18c{bottom:909.798669pt;}
.y109{bottom:911.805369pt;}
.y127{bottom:916.474701pt;}
.y6{bottom:918.565628pt;}
.y2c{bottom:928.868036pt;}
.y115{bottom:930.337365pt;}
.y107{bottom:932.472036pt;}
.y126{bottom:937.141368pt;}
.y6b{bottom:939.468028pt;}
.y35{bottom:939.468032pt;}
.y48{bottom:939.468033pt;}
.ydb{bottom:939.534698pt;}
.yeb{bottom:939.534702pt;}
.yc4{bottom:939.534704pt;}
.y18b{bottom:946.596002pt;}
.y5{bottom:950.948303pt;}
.y106{bottom:957.933369pt;}
.y114{bottom:957.934700pt;}
.y2b{bottom:965.665368pt;}
.y34{bottom:976.265364pt;}
.y6a{bottom:976.265366pt;}
.yc3{bottom:976.332035pt;}
.yda{bottom:976.332036pt;}
.y4{bottom:979.108300pt;}
.y113{bottom:985.532035pt;}
.y3{bottom:994.468302pt;}
.y33{bottom:1013.062697pt;}
.y2a{bottom:1013.129368pt;}
.y2{bottom:1022.628301pt;}
.yc2{bottom:1042.781364pt;}
.y31{bottom:1052.181366pt;}
.y1{bottom:1057.686289pt;}
.h25{height:20.666667pt;}
.h1f{height:22.333333pt;}
.h17{height:22.666667pt;}
.h19{height:23.333333pt;}
.h1a{height:23.666667pt;}
.h1c{height:24.333333pt;}
.h24{height:24.666667pt;}
.h21{height:25.333333pt;}
.h23{height:25.666667pt;}
.h22{height:26.333333pt;}
.h20{height:26.666667pt;}
.h12{height:32.367188pt;}
.h8{height:32.551999pt;}
.h1b{height:36.397334pt;}
.h9{height:36.432292pt;}
.h3{height:37.275001pt;}
.h2{height:37.300001pt;}
.h18{height:39.760417pt;}
.h1e{height:40.734375pt;}
.h10{height:43.156250pt;}
.h38{height:43.375000pt;}
.h6{height:44.437500pt;}
.hb{height:46.796875pt;}
.h36{height:47.742188pt;}
.h4{height:48.453618pt;}
.h7{height:50.125000pt;}
.ha{height:51.476562pt;}
.h1{height:52.181118pt;}
.h2e{height:52.888125pt;}
.h37{height:53.046875pt;}
.h2b{height:53.471250pt;}
.h2c{height:53.598562pt;}
.he{height:56.156250pt;}
.hd{height:56.829488pt;}
.hc{height:56.829501pt;}
.h1d{height:57.064000pt;}
.h2d{height:57.787500pt;}
.h27{height:58.563750pt;}
.h34{height:61.534375pt;}
.h29{height:62.812500pt;}
.h33{height:63.346875pt;}
.h28{height:64.500000pt;}
.h32{height:65.781915pt;}
.h30{height:292.800000pt;}
.h2f{height:320.960000pt;}
.h2a{height:328.960000pt;}
.h35{height:361.866667pt;}
.h16{height:666.821729pt;}
.h15{height:673.858724pt;}
.h11{height:677.044385pt;}
.hf{height:684.081380pt;}
.h14{height:693.044385pt;}
.h13{height:700.081380pt;}
.h26{height:1056.000000pt;}
.h31{height:1122.399984pt;}
.h5{height:1122.533366pt;}
.h0{height:1122.666667pt;}
.wb{width:18.777000pt;}
.wc{width:19.857333pt;}
.w6{width:19.896000pt;}
.w9{width:25.036001pt;}
.w5{width:26.106667pt;}
.w8{width:26.887001pt;}
.w7{width:28.286667pt;}
.wa{width:36.297001pt;}
.w1b{width:44.733332pt;}
.w17{width:48.200002pt;}
.w1a{width:51.266668pt;}
.w1c{width:70.000000pt;}
.w18{width:79.000000pt;}
.w10{width:97.200002pt;}
.w13{width:105.733337pt;}
.w11{width:106.599996pt;}
.w14{width:117.000000pt;}
.wf{width:126.466665pt;}
.w16{width:142.200002pt;}
.we{width:150.666667pt;}
.w15{width:160.666667pt;}
.w19{width:164.599996pt;}
.w12{width:276.733337pt;}
.wd{width:324.933329pt;}
.w21{width:599.040000pt;}
.w20{width:613.120000pt;}
.w1f{width:615.040000pt;}
.w24{width:697.866667pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.w4{width:793.733287pt;}
.w2{width:793.733317pt;}
.w23{width:793.866667pt;}
.w22{width:793.866699pt;}
.w3{width:794.000000pt;}
.w1e{width:815.999988pt;}
.w1d{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.125000pt;}
.xa{left:8.166667pt;}
.x3b{left:9.734667pt;}
.x3f{left:11.630667pt;}
.x2{left:12.799998pt;}
.x32{left:14.117334pt;}
.x38{left:15.045333pt;}
.x3d{left:16.466667pt;}
.x3c{left:17.578667pt;}
.x26{left:18.670667pt;}
.x3e{left:20.021334pt;}
.x24{left:22.574667pt;}
.x37{left:23.840000pt;}
.x22{left:25.184000pt;}
.x43{left:30.080000pt;}
.x2c{left:31.616000pt;}
.x25{left:32.774666pt;}
.x2d{left:34.966668pt;}
.x23{left:37.208001pt;}
.x20{left:38.817333pt;}
.x2f{left:40.466668pt;}
.x28{left:42.300001pt;}
.x2a{left:43.496000pt;}
.x76{left:44.573333pt;}
.x2e{left:45.966668pt;}
.x1{left:48.000000pt;}
.x30{left:49.333334pt;}
.x8{left:50.533335pt;}
.x7{left:57.200002pt;}
.x6{left:63.866669pt;}
.x1c{left:69.400004pt;}
.x33{left:72.999998pt;}
.x1e{left:77.341332pt;}
.x40{left:79.857334pt;}
.x4{left:81.966670pt;}
.x77{left:87.680000pt;}
.x61{left:89.693333pt;}
.x44{left:99.133333pt;}
.x78{left:107.226667pt;}
.x62{left:109.853333pt;}
.x1f{left:112.066671pt;}
.x42{left:113.311988pt;}
.x45{left:115.813333pt;}
.x79{left:126.786667pt;}
.x63{left:130.013333pt;}
.x46{left:132.453333pt;}
.x5f{left:143.706667pt;}
.x7a{left:146.333333pt;}
.x47{left:149.120000pt;}
.x64{left:150.213333pt;}
.x48{left:165.760000pt;}
.x65{left:170.373333pt;}
.x49{left:182.426667pt;}
.x7b{left:185.440000pt;}
.x66{left:190.533333pt;}
.x4a{left:199.066667pt;}
.x7c{left:204.960000pt;}
.x67{left:210.693333pt;}
.x3{left:214.319987pt;}
.x4b{left:215.706667pt;}
.x7d{left:224.506667pt;}
.x68{left:230.853333pt;}
.x4c{left:232.386667pt;}
.x7e{left:244.066667pt;}
.x4d{left:249.026667pt;}
.x34{left:251.600006pt;}
.x1d{left:260.066671pt;}
.x7f{left:263.613333pt;}
.x4e{left:265.693333pt;}
.x69{left:271.173333pt;}
.x4f{left:282.333333pt;}
.x8d{left:289.853333pt;}
.x6a{left:291.333333pt;}
.x35{left:297.133341pt;}
.x50{left:299.013333pt;}
.x80{left:302.720000pt;}
.x6b{left:311.493333pt;}
.x51{left:315.653333pt;}
.x90{left:320.960000pt;}
.x81{left:322.266667pt;}
.x9{left:327.979994pt;}
.x52{left:332.320000pt;}
.xb{left:339.794994pt;}
.x82{left:341.786667pt;}
.xd{left:348.922765pt;}
.x6c{left:351.813333pt;}
.x83{left:361.346667pt;}
.xe{left:364.399535pt;}
.x53{left:365.626667pt;}
.x6d{left:371.973333pt;}
.x36{left:373.466675pt;}
.xf{left:376.214535pt;}
.x84{left:380.893333pt;}
.x54{left:382.266667pt;}
.x15{left:384.479471pt;}
.x27{left:386.133341pt;}
.x10{left:392.333307pt;}
.x16{left:396.294470pt;}
.x55{left:398.906667pt;}
.x85{left:400.453333pt;}
.x11{left:404.559411pt;}
.x6e{left:412.293333pt;}
.x12{left:416.374411pt;}
.x86{left:420.000000pt;}
.x17{left:422.984049pt;}
.x18{left:432.153628pt;}
.x87{left:439.546667pt;}
.x13{left:443.063990pt;}
.x56{left:448.893333pt;}
.x14{left:452.233569pt;}
.x88{left:459.066667pt;}
.x19{left:464.828892pt;}
.x6f{left:472.773333pt;}
.x21{left:478.400004pt;}
.x57{left:482.213333pt;}
.x29{left:490.066671pt;}
.x70{left:492.933333pt;}
.x58{left:498.853333pt;}
.x71{left:513.093333pt;}
.x59{left:515.520000pt;}
.x89{left:517.733333pt;}
.x5a{left:532.160000pt;}
.x72{left:533.253333pt;}
.x31{left:535.400004pt;}
.x8a{left:537.280000pt;}
.x5b{left:548.826667pt;}
.x73{left:553.413333pt;}
.x8b{left:556.826667pt;}
.x5c{left:565.466667pt;}
.x74{left:573.573333pt;}
.x8c{left:576.386667pt;}
.x5d{left:582.146667pt;}
.x39{left:584.000020pt;}
.x2b{left:593.133321pt;}
.x5e{left:598.786667pt;}
.x3a{left:626.066671pt;}
.x8e{left:634.533333pt;}
.x1b{left:666.817322pt;}
.x8f{left:678.173333pt;}
.x1a{left:685.684011pt;}
.x5{left:692.442678pt;}
.x75{left:712.293321pt;}
.x60{left:726.373321pt;}
.x41{left:728.293321pt;}
}

