
    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_036607e158382221413dc50b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_f1197b5ac3b60562e263e595.woff')format("woff");}.ff2{font-family:ff2;line-height:1.089844;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_4f1c5ee912f6af544bf03bda.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_f91f08c802c4dfcf59009aba.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_d96bbd1bde2acba72bb2a5f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_502026772753dec8f6ac9d96.woff')format("woff");}.ff6{font-family:ff6;line-height:1.089844;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_5dcf24597bdd47abac3d5450.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_b9cd92dc12576354779522eb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.912598;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_2f048de126ebfad654722b69.woff')format("woff");}.ff9{font-family:ff9;line-height:0.924316;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_61a2e8ab090aef3c3dc091f6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.089844;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_3b68f9d480e0381d4a063605.woff')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_eae1df7101112cc78326cc10.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_7684f74bc682886c9aa97192.woff')format("woff");}.ffd{font-family:ffd;line-height:0.922852;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;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.v2{vertical-align:-77.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.974000px;}
.ls7{letter-spacing:-18.000000px;}
.lsa{letter-spacing:-1.368000px;}
.ls15{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.008914px;}
.lsf{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.035400px;}
.ls10{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.701400px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.223400px;}
.lsd{letter-spacing:1.224000px;}
.ls5{letter-spacing:1.350000px;}
.ls2{letter-spacing:1.350612px;}
.ls14{letter-spacing:2.376000px;}
.ls8{letter-spacing:2.592000px;}
.ls0{letter-spacing:2.700168px;}
.lse{letter-spacing:3.921000px;}
.ls13{letter-spacing:23.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;}
}
.ws6{word-spacing:-36.018000px;}
.ws0{word-spacing:-27.000000px;}
.ws40{word-spacing:-20.376000px;}
.ws7{word-spacing:-19.500000px;}
.ws3f{word-spacing:-19.224000px;}
.ws1{word-spacing:-18.900000px;}
.ws17{word-spacing:-18.720000px;}
.ws41{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.000000px;}
.ws32{word-spacing:-17.280000px;}
.ws42{word-spacing:-17.064000px;}
.ws43{word-spacing:-16.920000px;}
.wsc{word-spacing:-16.500000px;}
.ws33{word-spacing:-15.600000px;}
.ws8{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws3e{word-spacing:-12.600000px;}
.wsd{word-spacing:-11.550000px;}
.ws5{word-spacing:-9.450000px;}
.ws2c{word-spacing:-3.312000px;}
.ws30{word-spacing:-2.592000px;}
.ws36{word-spacing:-2.520000px;}
.ws4d{word-spacing:-2.088000px;}
.ws4e{word-spacing:-2.016000px;}
.ws4b{word-spacing:-1.872000px;}
.ws55{word-spacing:-1.728000px;}
.ws50{word-spacing:-1.296000px;}
.ws44{word-spacing:-1.224000px;}
.ws15{word-spacing:-1.020000px;}
.ws1f{word-spacing:-1.008000px;}
.ws1e{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.600000px;}
.ws1c{word-spacing:-0.432000px;}
.ws57{word-spacing:-0.288000px;}
.ws2{word-spacing:0.000000px;}
.ws26{word-spacing:0.720000px;}
.ws5a{word-spacing:1.080000px;}
.ws4f{word-spacing:1.224000px;}
.ws2e{word-spacing:1.368000px;}
.ws9{word-spacing:1.650000px;}
.ws4c{word-spacing:1.728000px;}
.ws3d{word-spacing:1.872000px;}
.ws3b{word-spacing:1.944000px;}
.ws37{word-spacing:2.088000px;}
.ws2a{word-spacing:2.304000px;}
.wse{word-spacing:2.592000px;}
.ws34{word-spacing:2.880000px;}
.ws1a{word-spacing:3.240000px;}
.ws5e{word-spacing:3.384000px;}
.ws53{word-spacing:3.528000px;}
.ws10{word-spacing:3.600000px;}
.ws1b{word-spacing:4.104000px;}
.ws35{word-spacing:4.248000px;}
.ws29{word-spacing:4.320000px;}
.ws12{word-spacing:4.464000px;}
.ws3c{word-spacing:4.824000px;}
.ws19{word-spacing:4.896000px;}
.ws5d{word-spacing:5.112000px;}
.ws21{word-spacing:5.328000px;}
.ws16{word-spacing:5.472000px;}
.ws2f{word-spacing:5.616000px;}
.ws48{word-spacing:5.688000px;}
.ws2d{word-spacing:5.832000px;}
.ws27{word-spacing:5.904000px;}
.ws47{word-spacing:6.048000px;}
.ws60{word-spacing:6.120000px;}
.wsf{word-spacing:6.336000px;}
.ws3a{word-spacing:6.408000px;}
.ws28{word-spacing:6.840000px;}
.ws23{word-spacing:7.056000px;}
.wsb{word-spacing:7.380000px;}
.ws14{word-spacing:7.416000px;}
.ws18{word-spacing:7.488000px;}
.ws58{word-spacing:8.280000px;}
.ws52{word-spacing:8.784000px;}
.ws51{word-spacing:8.856000px;}
.ws24{word-spacing:10.008000px;}
.ws25{word-spacing:10.080000px;}
.ws13{word-spacing:11.016000px;}
.ws5b{word-spacing:11.304000px;}
.ws56{word-spacing:12.456000px;}
.ws39{word-spacing:12.600000px;}
.ws31{word-spacing:12.888000px;}
.ws1d{word-spacing:13.176000px;}
.ws5c{word-spacing:13.320000px;}
.ws2b{word-spacing:13.680000px;}
.ws46{word-spacing:14.544000px;}
.ws20{word-spacing:14.832000px;}
.ws5f{word-spacing:15.768000px;}
.ws11{word-spacing:18.000000px;}
.ws54{word-spacing:19.152000px;}
.ws59{word-spacing:23.688000px;}
.ws22{word-spacing:24.048000px;}
.ws45{word-spacing:29.016000px;}
.ws49{word-spacing:88.632000px;}
.ws4a{word-spacing:110.304000px;}
._13{margin-left:-18.108674px;}
._0{margin-left:-9.945000px;}
._6{margin-left:-7.992000px;}
._14{margin-left:-6.984000px;}
._5{margin-left:-5.774400px;}
._3{margin-left:-3.974400px;}
._1{margin-left:-2.918896px;}
._4{margin-left:-1.353600px;}
._7{width:1.656600px;}
._2{width:2.767769px;}
._a{width:4.478400px;}
._c{width:5.479200px;}
._b{width:6.544800px;}
._8{width:7.934400px;}
._9{width:9.214591px;}
._10{width:10.357904px;}
._f{width:11.577600px;}
._12{width:12.693600px;}
._d{width:13.788000px;}
._e{width:14.889600px;}
._11{width:16.840800px;}
._16{width:19.231200px;}
._15{width:20.944800px;}
._1c{width:22.564800px;}
._17{width:24.753600px;}
._18{width:30.200400px;}
._22{width:63.100800px;}
._1d{width:70.560000px;}
._1e{width:79.276200px;}
._1f{width:80.779800px;}
._19{width:88.687200px;}
._1a{width:91.536600px;}
._1b{width:93.193800px;}
._21{width:96.105000px;}
._20{width:97.346896px;}
._23{width:100.029600px;}
.fc1{color:rgb(4,6,6);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:37.800000px;}
.fsd{font-size:45.474000px;}
.fsf{font-size:46.200000px;}
.fs10{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fse{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:75.600000px;}
.fsc{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:54.651750px;}
.y28{bottom:56.151750px;}
.y7c{bottom:74.834550px;}
.y2c{bottom:74.834700px;}
.y7b{bottom:74.839050px;}
.y2b{bottom:74.839200px;}
.y7a{bottom:92.834550px;}
.y2a{bottom:92.834700px;}
.y27{bottom:94.028850px;}
.y26{bottom:112.028850px;}
.y5f{bottom:127.559100px;}
.ya{bottom:128.834700px;}
.yf6{bottom:129.007050px;}
.y1f7{bottom:129.013050px;}
.y12f{bottom:129.043050px;}
.y198{bottom:129.223050px;}
.y144{bottom:129.277050px;}
.yb0{bottom:129.313050px;}
.y1cc{bottom:129.529050px;}
.y25{bottom:130.028850px;}
.y172{bottom:131.040450px;}
.y129{bottom:131.226450px;}
.ye1{bottom:142.687050px;}
.y228{bottom:144.013050px;}
.y5e{bottom:145.559100px;}
.y9{bottom:146.834700px;}
.y24{bottom:148.028850px;}
.yf5{bottom:148.507050px;}
.y12e{bottom:148.537050px;}
.y197{bottom:148.717050px;}
.y143{bottom:148.771050px;}
.yaf{bottom:148.807050px;}
.y1cb{bottom:149.023050px;}
.y171{bottom:150.534450px;}
.y128{bottom:150.720450px;}
.ye0{bottom:162.181050px;}
.y227{bottom:163.507050px;}
.y5d{bottom:163.559100px;}
.y23{bottom:166.028850px;}
.yf4{bottom:168.007050px;}
.y1f6{bottom:168.013050px;}
.y12d{bottom:168.031050px;}
.y196{bottom:168.211050px;}
.y142{bottom:168.265050px;}
.yae{bottom:168.301050px;}
.y1ca{bottom:168.517050px;}
.y170{bottom:170.028450px;}
.y127{bottom:170.214450px;}
.y5c{bottom:181.559100px;}
.ydf{bottom:181.675050px;}
.y8{bottom:182.834700px;}
.y226{bottom:183.031050px;}
.y22{bottom:184.028850px;}
.yf3{bottom:187.507050px;}
.y12c{bottom:187.525050px;}
.y195{bottom:187.705050px;}
.y141{bottom:187.759050px;}
.yad{bottom:187.795050px;}
.y1c9{bottom:188.011050px;}
.y16f{bottom:189.522450px;}
.y126{bottom:189.708450px;}
.y5b{bottom:199.559100px;}
.yde{bottom:201.169050px;}
.y225{bottom:202.525050px;}
.y21{bottom:203.522850px;}
.yf2{bottom:207.007050px;}
.y1f5{bottom:207.013050px;}
.y12b{bottom:207.019050px;}
.y194{bottom:207.199050px;}
.y140{bottom:207.253050px;}
.yac{bottom:207.289050px;}
.y1c8{bottom:207.505050px;}
.y16e{bottom:209.016450px;}
.y125{bottom:209.202450px;}
.y5a{bottom:217.559100px;}
.ydd{bottom:220.663050px;}
.y20{bottom:221.522850px;}
.y224{bottom:222.019050px;}
.yf1{bottom:226.507050px;}
.y12a{bottom:226.513050px;}
.y193{bottom:226.693050px;}
.y13f{bottom:226.747050px;}
.yab{bottom:226.783050px;}
.y1c7{bottom:226.999050px;}
.y16d{bottom:228.510450px;}
.y124{bottom:228.696450px;}
.y59{bottom:235.559100px;}
.y1f{bottom:239.522850px;}
.ydc{bottom:240.157050px;}
.y223{bottom:241.513050px;}
.yf0{bottom:246.007050px;}
.y1f4{bottom:246.031050px;}
.y192{bottom:246.187050px;}
.y13e{bottom:246.241050px;}
.yaa{bottom:246.277050px;}
.y1c6{bottom:246.493050px;}
.y16c{bottom:248.004450px;}
.y123{bottom:248.190450px;}
.y58{bottom:253.559100px;}
.ydb{bottom:259.651050px;}
.y222{bottom:261.007050px;}
.yef{bottom:265.507050px;}
.y1f3{bottom:265.525050px;}
.y191{bottom:265.681050px;}
.y13d{bottom:265.735050px;}
.ya9{bottom:265.771050px;}
.y1c5{bottom:265.987050px;}
.y16b{bottom:267.498450px;}
.y122{bottom:267.684450px;}
.y57{bottom:271.559100px;}
.yda{bottom:279.145050px;}
.y221{bottom:280.525050px;}
.yee{bottom:285.007050px;}
.y1f2{bottom:285.019050px;}
.y190{bottom:285.175050px;}
.y13c{bottom:285.229050px;}
.ya8{bottom:285.265050px;}
.y1c4{bottom:285.481050px;}
.y16a{bottom:286.992450px;}
.y121{bottom:287.178450px;}
.yd9{bottom:298.639050px;}
.y220{bottom:300.019050px;}
.y56{bottom:303.766350px;}
.yed{bottom:304.507050px;}
.y1f1{bottom:304.513050px;}
.y18f{bottom:304.669050px;}
.y13b{bottom:304.723050px;}
.ya7{bottom:304.759050px;}
.y1c3{bottom:304.975050px;}
.y169{bottom:306.486450px;}
.y120{bottom:306.672450px;}
.yd8{bottom:318.133050px;}
.y21f{bottom:319.513050px;}
.y55{bottom:323.260350px;}
.yec{bottom:324.007050px;}
.y18e{bottom:324.163050px;}
.y13a{bottom:324.217050px;}
.ya6{bottom:324.253050px;}
.y1c2{bottom:324.469050px;}
.y168{bottom:325.980450px;}
.y11f{bottom:326.166450px;}
.yd7{bottom:337.627050px;}
.y21e{bottom:339.007050px;}
.y54{bottom:342.754350px;}
.yeb{bottom:343.507050px;}
.y1f0{bottom:343.531050px;}
.y18d{bottom:343.657050px;}
.y139{bottom:343.711050px;}
.ya5{bottom:343.747050px;}
.y1c1{bottom:343.963050px;}
.y167{bottom:345.474450px;}
.y11e{bottom:345.660450px;}
.yd6{bottom:357.121050px;}
.y21d{bottom:358.537050px;}
.y53{bottom:362.248350px;}
.yea{bottom:363.007050px;}
.y1ef{bottom:363.025050px;}
.y18c{bottom:363.151050px;}
.y138{bottom:363.205050px;}
.ya4{bottom:363.241050px;}
.y1c0{bottom:363.457050px;}
.y78{bottom:364.964100px;}
.y166{bottom:364.968450px;}
.y11d{bottom:365.154450px;}
.yd5{bottom:376.615050px;}
.y21c{bottom:378.031050px;}
.y52{bottom:381.742350px;}
.ye9{bottom:382.507050px;}
.y1ee{bottom:382.519050px;}
.y18b{bottom:382.645050px;}
.y137{bottom:382.699050px;}
.ya3{bottom:382.735050px;}
.y1bf{bottom:382.951050px;}
.y77{bottom:384.464100px;}
.y11c{bottom:384.648450px;}
.yd4{bottom:396.109050px;}
.y21b{bottom:397.525050px;}
.y51{bottom:401.236350px;}
.y1e{bottom:401.522850px;}
.ye8{bottom:402.007050px;}
.y1ed{bottom:402.013050px;}
.y18a{bottom:402.139050px;}
.y136{bottom:402.193050px;}
.ya2{bottom:402.229050px;}
.y1be{bottom:402.445050px;}
.y76{bottom:403.964100px;}
.y165{bottom:403.968450px;}
.y11b{bottom:404.142450px;}
.yd3{bottom:415.603050px;}
.y21a{bottom:417.019050px;}
.y1d{bottom:419.522850px;}
.y50{bottom:420.730350px;}
.ye7{bottom:421.507050px;}
.y189{bottom:421.633050px;}
.y135{bottom:421.687050px;}
.ya1{bottom:421.723050px;}
.y1bd{bottom:421.939050px;}
.y75{bottom:423.464100px;}
.y164{bottom:423.468450px;}
.y11a{bottom:423.636450px;}
.yd2{bottom:435.097050px;}
.y219{bottom:436.513050px;}
.y4f{bottom:440.224350px;}
.ye6{bottom:441.007050px;}
.y1ec{bottom:441.013050px;}
.y188{bottom:441.127050px;}
.y134{bottom:441.181050px;}
.ya0{bottom:441.217050px;}
.y1bc{bottom:441.433050px;}
.y74{bottom:442.964100px;}
.y163{bottom:442.968450px;}
.y119{bottom:443.130450px;}
.yd1{bottom:454.591050px;}
.y218{bottom:456.007050px;}
.y4e{bottom:459.718350px;}
.ye5{bottom:460.507050px;}
.y187{bottom:460.621050px;}
.y133{bottom:460.675050px;}
.y9f{bottom:460.711050px;}
.y1bb{bottom:460.927050px;}
.y73{bottom:462.464100px;}
.y162{bottom:462.468450px;}
.y118{bottom:462.624450px;}
.y1c{bottom:473.522850px;}
.yd0{bottom:474.085050px;}
.y217{bottom:475.525050px;}
.y4d{bottom:479.212350px;}
.ye4{bottom:480.007050px;}
.y1eb{bottom:480.019050px;}
.y186{bottom:480.115050px;}
.y132{bottom:480.169050px;}
.y9e{bottom:480.205050px;}
.y1ba{bottom:480.421050px;}
.y72{bottom:481.964100px;}
.y161{bottom:481.968450px;}
.y117{bottom:482.118450px;}
.y1b{bottom:491.522850px;}
.ycf{bottom:493.579050px;}
.y216{bottom:495.019050px;}
.y4c{bottom:498.706350px;}
.ye3{bottom:499.507050px;}
.y1ea{bottom:499.513050px;}
.y185{bottom:499.609050px;}
.y9d{bottom:499.699050px;}
.y1b9{bottom:499.915050px;}
.y71{bottom:501.464100px;}
.y160{bottom:501.468450px;}
.y116{bottom:501.612450px;}
.y1a{bottom:509.522850px;}
.yce{bottom:513.073050px;}
.y215{bottom:514.513050px;}
.y4b{bottom:518.200350px;}
.ye2{bottom:519.007050px;}
.y184{bottom:519.103050px;}
.y131{bottom:519.175050px;}
.y9c{bottom:519.193050px;}
.y1b8{bottom:519.409050px;}
.y70{bottom:520.964100px;}
.y15f{bottom:520.968450px;}
.y115{bottom:521.106450px;}
.y19{bottom:527.522850px;}
.ycd{bottom:532.567050px;}
.y214{bottom:534.007050px;}
.y4a{bottom:537.694350px;}
.y1e9{bottom:538.525050px;}
.y183{bottom:538.597050px;}
.y130{bottom:538.669050px;}
.y9b{bottom:538.687050px;}
.y1b7{bottom:538.903050px;}
.y6f{bottom:540.464100px;}
.y15e{bottom:540.468450px;}
.y114{bottom:540.600450px;}
.y18{bottom:545.522850px;}
.ycc{bottom:552.061050px;}
.y213{bottom:553.519050px;}
.y49{bottom:557.188350px;}
.y1e8{bottom:558.019050px;}
.y182{bottom:558.091050px;}
.y9a{bottom:558.181050px;}
.y1b6{bottom:558.397050px;}
.y6e{bottom:559.964100px;}
.y15d{bottom:559.968450px;}
.y113{bottom:560.094450px;}
.y17{bottom:563.522850px;}
.ycb{bottom:571.555050px;}
.y212{bottom:573.013050px;}
.y48{bottom:576.682350px;}
.y1e7{bottom:577.513050px;}
.y181{bottom:577.585050px;}
.y99{bottom:577.675050px;}
.y1b5{bottom:577.891050px;}
.y6d{bottom:579.464100px;}
.y15c{bottom:579.468450px;}
.y112{bottom:579.588450px;}
.y16{bottom:581.522850px;}
.yca{bottom:591.049050px;}
.y211{bottom:592.507050px;}
.y47{bottom:596.176350px;}
.y1e6{bottom:597.007050px;}
.y180{bottom:597.079050px;}
.y98{bottom:597.169050px;}
.y1b4{bottom:597.385050px;}
.y15b{bottom:598.968450px;}
.y111{bottom:599.082450px;}
.y15{bottom:599.522850px;}
.yc9{bottom:610.543050px;}
.y210{bottom:612.019050px;}
.y46{bottom:615.670350px;}
.y1e5{bottom:616.519050px;}
.y17f{bottom:616.573050px;}
.y97{bottom:616.663050px;}
.y1b3{bottom:616.879050px;}
.y14{bottom:617.522850px;}
.y15a{bottom:618.468450px;}
.y110{bottom:618.576450px;}
.yc8{bottom:630.037050px;}
.y20f{bottom:631.513050px;}
.y45{bottom:635.164350px;}
.y13{bottom:635.522850px;}
.y1e4{bottom:636.013050px;}
.y17e{bottom:636.067050px;}
.y96{bottom:636.157050px;}
.y1b2{bottom:636.373050px;}
.y6c{bottom:637.964100px;}
.y159{bottom:637.968450px;}
.y10f{bottom:638.070450px;}
.y7{bottom:645.828750px;}
.yc7{bottom:649.531050px;}
.y20e{bottom:651.007050px;}
.y44{bottom:654.658350px;}
.y1e3{bottom:655.507050px;}
.y17d{bottom:655.561050px;}
.y95{bottom:655.651050px;}
.y1b1{bottom:655.867050px;}
.y6b{bottom:657.464100px;}
.y158{bottom:657.468450px;}
.y10e{bottom:657.564450px;}
.yc6{bottom:669.025050px;}
.y12{bottom:671.522850px;}
.y43{bottom:674.152350px;}
.y1e2{bottom:675.025050px;}
.y17c{bottom:675.055050px;}
.y94{bottom:675.145050px;}
.y1b0{bottom:675.361050px;}
.y6a{bottom:676.964100px;}
.y10d{bottom:677.058450px;}
.y6{bottom:678.828750px;}
.yc5{bottom:688.519050px;}
.y20d{bottom:691.507050px;}
.y42{bottom:693.646350px;}
.y1e1{bottom:694.519050px;}
.y17b{bottom:694.549050px;}
.y93{bottom:694.639050px;}
.y1af{bottom:694.855050px;}
.y69{bottom:696.464100px;}
.y10c{bottom:696.552450px;}
.y157{bottom:696.582450px;}
.y11{bottom:707.522850px;}
.yc4{bottom:708.013050px;}
.y41{bottom:713.140350px;}
.y1e0{bottom:714.013050px;}
.y17a{bottom:714.043050px;}
.y92{bottom:714.133050px;}
.y1ae{bottom:714.349050px;}
.y68{bottom:715.964100px;}
.y10b{bottom:716.046450px;}
.y156{bottom:716.076450px;}
.y5{bottom:716.328750px;}
.y10{bottom:725.522850px;}
.yc3{bottom:727.507050px;}
.y40{bottom:732.634350px;}
.y1df{bottom:733.507050px;}
.y179{bottom:733.537050px;}
.y91{bottom:733.627050px;}
.y20c{bottom:733.633050px;}
.y1ad{bottom:733.843050px;}
.y67{bottom:735.464100px;}
.y10a{bottom:735.540450px;}
.y155{bottom:735.570450px;}
.yf{bottom:743.522850px;}
.y3f{bottom:752.128350px;}
.y1de{bottom:753.013050px;}
.y178{bottom:753.031050px;}
.y90{bottom:753.121050px;}
.y20b{bottom:753.127050px;}
.y1ac{bottom:753.337050px;}
.y66{bottom:754.964100px;}
.y109{bottom:755.034450px;}
.y154{bottom:755.064450px;}
.ye{bottom:761.522850px;}
.yc2{bottom:766.504050px;}
.y3e{bottom:771.622350px;}
.y1dd{bottom:772.507050px;}
.y177{bottom:772.525050px;}
.y8f{bottom:772.615050px;}
.y20a{bottom:772.621050px;}
.y1ab{bottom:772.831050px;}
.y65{bottom:774.464100px;}
.y108{bottom:774.528450px;}
.y153{bottom:774.558450px;}
.yd{bottom:779.522850px;}
.yc1{bottom:789.007050px;}
.y3d{bottom:791.116350px;}
.y176{bottom:792.019050px;}
.y1dc{bottom:792.043050px;}
.y8e{bottom:792.109050px;}
.y209{bottom:792.115050px;}
.y1aa{bottom:792.325050px;}
.y64{bottom:793.964100px;}
.y107{bottom:794.022450px;}
.y152{bottom:794.052450px;}
.yc{bottom:797.522850px;}
.y4{bottom:807.828750px;}
.y3c{bottom:810.610350px;}
.y175{bottom:811.513050px;}
.y1db{bottom:811.537050px;}
.y8d{bottom:811.603050px;}
.y208{bottom:811.609050px;}
.y1a9{bottom:811.819050px;}
.y63{bottom:813.464100px;}
.y106{bottom:813.516450px;}
.y151{bottom:813.546450px;}
.yb{bottom:815.522850px;}
.y3b{bottom:830.104350px;}
.y174{bottom:831.007050px;}
.y1da{bottom:831.031050px;}
.y8c{bottom:831.097050px;}
.y207{bottom:831.103050px;}
.y1a8{bottom:831.313050px;}
.yc0{bottom:831.403050px;}
.y62{bottom:832.964100px;}
.y105{bottom:833.010450px;}
.y150{bottom:833.040450px;}
.y3a{bottom:849.598350px;}
.y1d9{bottom:850.525050px;}
.y8b{bottom:850.591050px;}
.y206{bottom:850.597050px;}
.y1a7{bottom:850.807050px;}
.ybf{bottom:850.897050px;}
.y61{bottom:852.464100px;}
.y104{bottom:852.504450px;}
.y14f{bottom:852.534450px;}
.y3{bottom:852.828750px;}
.y39{bottom:869.092350px;}
.y173{bottom:870.007050px;}
.y1d8{bottom:870.019050px;}
.y8a{bottom:870.085050px;}
.y205{bottom:870.091050px;}
.y1a6{bottom:870.301050px;}
.ybe{bottom:870.391050px;}
.y60{bottom:871.964100px;}
.y103{bottom:871.998450px;}
.y14e{bottom:872.028450px;}
.y38{bottom:888.586350px;}
.y1d7{bottom:889.513050px;}
.y89{bottom:889.579050px;}
.y204{bottom:889.585050px;}
.y1a5{bottom:889.795050px;}
.ybd{bottom:889.885050px;}
.y102{bottom:891.492450px;}
.y14d{bottom:891.522450px;}
.y37{bottom:908.080350px;}
.y1d6{bottom:909.007050px;}
.y88{bottom:909.073050px;}
.y203{bottom:909.079050px;}
.y1a4{bottom:909.289050px;}
.ybc{bottom:909.379050px;}
.y101{bottom:910.986450px;}
.y14c{bottom:911.016450px;}
.y36{bottom:927.574350px;}
.y1d5{bottom:928.513050px;}
.y87{bottom:928.567050px;}
.y202{bottom:928.573050px;}
.y1a3{bottom:928.783050px;}
.ybb{bottom:928.873050px;}
.y100{bottom:930.480450px;}
.y14b{bottom:930.510450px;}
.y2{bottom:942.828750px;}
.y35{bottom:947.068350px;}
.y1d4{bottom:948.007050px;}
.y86{bottom:948.061050px;}
.y201{bottom:948.067050px;}
.y1a2{bottom:948.277050px;}
.yba{bottom:948.367050px;}
.yff{bottom:949.974450px;}
.y14a{bottom:950.004450px;}
.y34{bottom:966.562350px;}
.y1d3{bottom:967.525050px;}
.y85{bottom:967.555050px;}
.y200{bottom:967.561050px;}
.y1a1{bottom:967.771050px;}
.yb9{bottom:967.861050px;}
.yfe{bottom:969.468450px;}
.y149{bottom:969.498450px;}
.y33{bottom:986.056350px;}
.y1d2{bottom:987.019050px;}
.y84{bottom:987.049050px;}
.y1ff{bottom:987.055050px;}
.y1a0{bottom:987.265050px;}
.yb8{bottom:987.355050px;}
.y1{bottom:987.828750px;}
.y148{bottom:988.992450px;}
.y32{bottom:1005.550350px;}
.y1d1{bottom:1006.513050px;}
.y83{bottom:1006.543050px;}
.y1fe{bottom:1006.549050px;}
.y19f{bottom:1006.759050px;}
.yb7{bottom:1006.849050px;}
.yfd{bottom:1008.468450px;}
.y147{bottom:1008.486450px;}
.y31{bottom:1025.044350px;}
.y1d0{bottom:1026.007050px;}
.y22b{bottom:1026.019050px;}
.y82{bottom:1026.037050px;}
.y1fd{bottom:1026.043050px;}
.y19e{bottom:1026.253050px;}
.yb6{bottom:1026.343050px;}
.yfc{bottom:1027.968450px;}
.y146{bottom:1027.980450px;}
.y30{bottom:1044.538350px;}
.y22a{bottom:1045.513050px;}
.y1cf{bottom:1045.519050px;}
.y81{bottom:1045.531050px;}
.y1fc{bottom:1045.537050px;}
.y19d{bottom:1045.747050px;}
.yb5{bottom:1045.837050px;}
.yfb{bottom:1047.468450px;}
.y145{bottom:1047.474450px;}
.y2f{bottom:1064.032350px;}
.y229{bottom:1065.007050px;}
.y1ce{bottom:1065.013050px;}
.y80{bottom:1065.025050px;}
.y1fb{bottom:1065.031050px;}
.y19c{bottom:1065.241050px;}
.yb4{bottom:1065.331050px;}
.yfa{bottom:1066.968450px;}
.y2e{bottom:1083.526350px;}
.y1cd{bottom:1084.507050px;}
.y7f{bottom:1084.519050px;}
.y1fa{bottom:1084.525050px;}
.y19b{bottom:1084.735050px;}
.yb3{bottom:1084.825050px;}
.yf9{bottom:1086.468450px;}
.y7e{bottom:1104.013050px;}
.y1f9{bottom:1104.019050px;}
.y19a{bottom:1104.229050px;}
.yb2{bottom:1104.319050px;}
.yf8{bottom:1105.968450px;}
.y2d{bottom:1122.526350px;}
.y7d{bottom:1123.507050px;}
.y1f8{bottom:1123.513050px;}
.y199{bottom:1123.723050px;}
.yb1{bottom:1123.813050px;}
.yf7{bottom:1125.468450px;}
.y29{bottom:1190.834550px;}
.h14{height:37.990723px;}
.h13{height:39.990234px;}
.he{height:43.989258px;}
.hf{height:45.193359px;}
.hd{height:47.704102px;}
.h11{height:47.988281px;}
.hc{height:49.992188px;}
.ha{height:50.027344px;}
.h12{height:50.214844px;}
.h16{height:51.987305px;}
.h7{height:52.725586px;}
.h15{height:55.236328px;}
.h10{height:56.282599px;}
.hb{height:58.324219px;}
.h9{height:58.365234px;}
.h8{height:60.257812px;}
.h4{height:62.534180px;}
.h6{height:75.322266px;}
.h3{height:83.378906px;}
.h5{height:90.386719px;}
.h2{height:104.223633px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:93.543300px;}
.x15{left:106.301700px;}
.x2{left:112.742100px;}
.x17{left:123.302700px;}
.x1b{left:148.816800px;}
.x1{left:152.792100px;}
.x3{left:163.404600px;}
.x1a{left:165.826800px;}
.x4{left:198.092100px;}
.x8{left:210.747750px;}
.xf{left:222.852600px;}
.x10{left:229.127250px;}
.xc{left:230.474250px;}
.x11{left:268.583250px;}
.x9{left:286.108350px;}
.x12{left:300.345750px;}
.x6{left:306.501000px;}
.x5{left:327.321000px;}
.x7{left:366.426750px;}
.x16{left:380.019300px;}
.xe{left:440.110950px;}
.xa{left:443.390550px;}
.xb{left:453.519450px;}
.x14{left:455.454600px;}
.x13{left:472.464600px;}
.x19{left:497.974200px;}
.x18{left:514.984200px;}
@media print{
.v2{vertical-align:-69.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.088000pt;}
.ls7{letter-spacing:-16.000000pt;}
.lsa{letter-spacing:-1.216000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.007924pt;}
.lsf{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.031467pt;}
.ls10{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.623467pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.906667pt;}
.lsc{letter-spacing:1.087467pt;}
.lsd{letter-spacing:1.088000pt;}
.ls5{letter-spacing:1.200000pt;}
.ls2{letter-spacing:1.200544pt;}
.ls14{letter-spacing:2.112000pt;}
.ls8{letter-spacing:2.304000pt;}
.ls0{letter-spacing:2.400150pt;}
.lse{letter-spacing:3.485333pt;}
.ls13{letter-spacing:21.056000pt;}
.ws6{word-spacing:-32.016000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws40{word-spacing:-18.112000pt;}
.ws7{word-spacing:-17.333333pt;}
.ws3f{word-spacing:-17.088000pt;}
.ws1{word-spacing:-16.800000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws41{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws32{word-spacing:-15.360000pt;}
.ws42{word-spacing:-15.168000pt;}
.ws43{word-spacing:-15.040000pt;}
.wsc{word-spacing:-14.666667pt;}
.ws33{word-spacing:-13.866667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3e{word-spacing:-11.200000pt;}
.wsd{word-spacing:-10.266667pt;}
.ws5{word-spacing:-8.400000pt;}
.ws2c{word-spacing:-2.944000pt;}
.ws30{word-spacing:-2.304000pt;}
.ws36{word-spacing:-2.240000pt;}
.ws4d{word-spacing:-1.856000pt;}
.ws4e{word-spacing:-1.792000pt;}
.ws4b{word-spacing:-1.664000pt;}
.ws55{word-spacing:-1.536000pt;}
.ws50{word-spacing:-1.152000pt;}
.ws44{word-spacing:-1.088000pt;}
.ws15{word-spacing:-0.906667pt;}
.ws1f{word-spacing:-0.896000pt;}
.ws1e{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.533333pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws57{word-spacing:-0.256000pt;}
.ws2{word-spacing:0.000000pt;}
.ws26{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.088000pt;}
.ws2e{word-spacing:1.216000pt;}
.ws9{word-spacing:1.466667pt;}
.ws4c{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.664000pt;}
.ws3b{word-spacing:1.728000pt;}
.ws37{word-spacing:1.856000pt;}
.ws2a{word-spacing:2.048000pt;}
.wse{word-spacing:2.304000pt;}
.ws34{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.880000pt;}
.ws5e{word-spacing:3.008000pt;}
.ws53{word-spacing:3.136000pt;}
.ws10{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.648000pt;}
.ws35{word-spacing:3.776000pt;}
.ws29{word-spacing:3.840000pt;}
.ws12{word-spacing:3.968000pt;}
.ws3c{word-spacing:4.288000pt;}
.ws19{word-spacing:4.352000pt;}
.ws5d{word-spacing:4.544000pt;}
.ws21{word-spacing:4.736000pt;}
.ws16{word-spacing:4.864000pt;}
.ws2f{word-spacing:4.992000pt;}
.ws48{word-spacing:5.056000pt;}
.ws2d{word-spacing:5.184000pt;}
.ws27{word-spacing:5.248000pt;}
.ws47{word-spacing:5.376000pt;}
.ws60{word-spacing:5.440000pt;}
.wsf{word-spacing:5.632000pt;}
.ws3a{word-spacing:5.696000pt;}
.ws28{word-spacing:6.080000pt;}
.ws23{word-spacing:6.272000pt;}
.wsb{word-spacing:6.560000pt;}
.ws14{word-spacing:6.592000pt;}
.ws18{word-spacing:6.656000pt;}
.ws58{word-spacing:7.360000pt;}
.ws52{word-spacing:7.808000pt;}
.ws51{word-spacing:7.872000pt;}
.ws24{word-spacing:8.896000pt;}
.ws25{word-spacing:8.960000pt;}
.ws13{word-spacing:9.792000pt;}
.ws5b{word-spacing:10.048000pt;}
.ws56{word-spacing:11.072000pt;}
.ws39{word-spacing:11.200000pt;}
.ws31{word-spacing:11.456000pt;}
.ws1d{word-spacing:11.712000pt;}
.ws5c{word-spacing:11.840000pt;}
.ws2b{word-spacing:12.160000pt;}
.ws46{word-spacing:12.928000pt;}
.ws20{word-spacing:13.184000pt;}
.ws5f{word-spacing:14.016000pt;}
.ws11{word-spacing:16.000000pt;}
.ws54{word-spacing:17.024000pt;}
.ws59{word-spacing:21.056000pt;}
.ws22{word-spacing:21.376000pt;}
.ws45{word-spacing:25.792000pt;}
.ws49{word-spacing:78.784000pt;}
.ws4a{word-spacing:98.048000pt;}
._13{margin-left:-16.096599pt;}
._0{margin-left:-8.840000pt;}
._6{margin-left:-7.104000pt;}
._14{margin-left:-6.208000pt;}
._5{margin-left:-5.132800pt;}
._3{margin-left:-3.532800pt;}
._1{margin-left:-2.594574pt;}
._4{margin-left:-1.203200pt;}
._7{width:1.472533pt;}
._2{width:2.460239pt;}
._a{width:3.980800pt;}
._c{width:4.870400pt;}
._b{width:5.817600pt;}
._8{width:7.052800pt;}
._9{width:8.190748pt;}
._10{width:9.207026pt;}
._f{width:10.291200pt;}
._12{width:11.283200pt;}
._d{width:12.256000pt;}
._e{width:13.235200pt;}
._11{width:14.969600pt;}
._16{width:17.094400pt;}
._15{width:18.617600pt;}
._1c{width:20.057600pt;}
._17{width:22.003200pt;}
._18{width:26.844800pt;}
._22{width:56.089600pt;}
._1d{width:62.720000pt;}
._1e{width:70.467733pt;}
._1f{width:71.804267pt;}
._19{width:78.833067pt;}
._1a{width:81.365867pt;}
._1b{width:82.838933pt;}
._21{width:85.426667pt;}
._20{width:86.530574pt;}
._23{width:88.915200pt;}
.fsb{font-size:33.600000pt;}
.fsd{font-size:40.421333pt;}
.fsf{font-size:41.066667pt;}
.fs10{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fse{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:67.200000pt;}
.fsc{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:48.579333pt;}
.y28{bottom:49.912667pt;}
.y7c{bottom:66.519600pt;}
.y2c{bottom:66.519733pt;}
.y7b{bottom:66.523600pt;}
.y2b{bottom:66.523733pt;}
.y7a{bottom:82.519600pt;}
.y2a{bottom:82.519733pt;}
.y27{bottom:83.581200pt;}
.y26{bottom:99.581200pt;}
.y5f{bottom:113.385867pt;}
.ya{bottom:114.519733pt;}
.yf6{bottom:114.672933pt;}
.y1f7{bottom:114.678267pt;}
.y12f{bottom:114.704933pt;}
.y198{bottom:114.864933pt;}
.y144{bottom:114.912933pt;}
.yb0{bottom:114.944933pt;}
.y1cc{bottom:115.136933pt;}
.y25{bottom:115.581200pt;}
.y172{bottom:116.480400pt;}
.y129{bottom:116.645733pt;}
.ye1{bottom:126.832933pt;}
.y228{bottom:128.011600pt;}
.y5e{bottom:129.385867pt;}
.y9{bottom:130.519733pt;}
.y24{bottom:131.581200pt;}
.yf5{bottom:132.006267pt;}
.y12e{bottom:132.032933pt;}
.y197{bottom:132.192933pt;}
.y143{bottom:132.240933pt;}
.yaf{bottom:132.272933pt;}
.y1cb{bottom:132.464933pt;}
.y171{bottom:133.808400pt;}
.y128{bottom:133.973733pt;}
.ye0{bottom:144.160933pt;}
.y227{bottom:145.339600pt;}
.y5d{bottom:145.385867pt;}
.y23{bottom:147.581200pt;}
.yf4{bottom:149.339600pt;}
.y1f6{bottom:149.344933pt;}
.y12d{bottom:149.360933pt;}
.y196{bottom:149.520933pt;}
.y142{bottom:149.568933pt;}
.yae{bottom:149.600933pt;}
.y1ca{bottom:149.792933pt;}
.y170{bottom:151.136400pt;}
.y127{bottom:151.301733pt;}
.y5c{bottom:161.385867pt;}
.ydf{bottom:161.488933pt;}
.y8{bottom:162.519733pt;}
.y226{bottom:162.694267pt;}
.y22{bottom:163.581200pt;}
.yf3{bottom:166.672933pt;}
.y12c{bottom:166.688933pt;}
.y195{bottom:166.848933pt;}
.y141{bottom:166.896933pt;}
.yad{bottom:166.928933pt;}
.y1c9{bottom:167.120933pt;}
.y16f{bottom:168.464400pt;}
.y126{bottom:168.629733pt;}
.y5b{bottom:177.385867pt;}
.yde{bottom:178.816933pt;}
.y225{bottom:180.022267pt;}
.y21{bottom:180.909200pt;}
.yf2{bottom:184.006267pt;}
.y1f5{bottom:184.011600pt;}
.y12b{bottom:184.016933pt;}
.y194{bottom:184.176933pt;}
.y140{bottom:184.224933pt;}
.yac{bottom:184.256933pt;}
.y1c8{bottom:184.448933pt;}
.y16e{bottom:185.792400pt;}
.y125{bottom:185.957733pt;}
.y5a{bottom:193.385867pt;}
.ydd{bottom:196.144933pt;}
.y20{bottom:196.909200pt;}
.y224{bottom:197.350267pt;}
.yf1{bottom:201.339600pt;}
.y12a{bottom:201.344933pt;}
.y193{bottom:201.504933pt;}
.y13f{bottom:201.552933pt;}
.yab{bottom:201.584933pt;}
.y1c7{bottom:201.776933pt;}
.y16d{bottom:203.120400pt;}
.y124{bottom:203.285733pt;}
.y59{bottom:209.385867pt;}
.y1f{bottom:212.909200pt;}
.ydc{bottom:213.472933pt;}
.y223{bottom:214.678267pt;}
.yf0{bottom:218.672933pt;}
.y1f4{bottom:218.694267pt;}
.y192{bottom:218.832933pt;}
.y13e{bottom:218.880933pt;}
.yaa{bottom:218.912933pt;}
.y1c6{bottom:219.104933pt;}
.y16c{bottom:220.448400pt;}
.y123{bottom:220.613733pt;}
.y58{bottom:225.385867pt;}
.ydb{bottom:230.800933pt;}
.y222{bottom:232.006267pt;}
.yef{bottom:236.006267pt;}
.y1f3{bottom:236.022267pt;}
.y191{bottom:236.160933pt;}
.y13d{bottom:236.208933pt;}
.ya9{bottom:236.240933pt;}
.y1c5{bottom:236.432933pt;}
.y16b{bottom:237.776400pt;}
.y122{bottom:237.941733pt;}
.y57{bottom:241.385867pt;}
.yda{bottom:248.128933pt;}
.y221{bottom:249.355600pt;}
.yee{bottom:253.339600pt;}
.y1f2{bottom:253.350267pt;}
.y190{bottom:253.488933pt;}
.y13c{bottom:253.536933pt;}
.ya8{bottom:253.568933pt;}
.y1c4{bottom:253.760933pt;}
.y16a{bottom:255.104400pt;}
.y121{bottom:255.269733pt;}
.yd9{bottom:265.456933pt;}
.y220{bottom:266.683600pt;}
.y56{bottom:270.014533pt;}
.yed{bottom:270.672933pt;}
.y1f1{bottom:270.678267pt;}
.y18f{bottom:270.816933pt;}
.y13b{bottom:270.864933pt;}
.ya7{bottom:270.896933pt;}
.y1c3{bottom:271.088933pt;}
.y169{bottom:272.432400pt;}
.y120{bottom:272.597733pt;}
.yd8{bottom:282.784933pt;}
.y21f{bottom:284.011600pt;}
.y55{bottom:287.342533pt;}
.yec{bottom:288.006267pt;}
.y18e{bottom:288.144933pt;}
.y13a{bottom:288.192933pt;}
.ya6{bottom:288.224933pt;}
.y1c2{bottom:288.416933pt;}
.y168{bottom:289.760400pt;}
.y11f{bottom:289.925733pt;}
.yd7{bottom:300.112933pt;}
.y21e{bottom:301.339600pt;}
.y54{bottom:304.670533pt;}
.yeb{bottom:305.339600pt;}
.y1f0{bottom:305.360933pt;}
.y18d{bottom:305.472933pt;}
.y139{bottom:305.520933pt;}
.ya5{bottom:305.552933pt;}
.y1c1{bottom:305.744933pt;}
.y167{bottom:307.088400pt;}
.y11e{bottom:307.253733pt;}
.yd6{bottom:317.440933pt;}
.y21d{bottom:318.699600pt;}
.y53{bottom:321.998533pt;}
.yea{bottom:322.672933pt;}
.y1ef{bottom:322.688933pt;}
.y18c{bottom:322.800933pt;}
.y138{bottom:322.848933pt;}
.ya4{bottom:322.880933pt;}
.y1c0{bottom:323.072933pt;}
.y78{bottom:324.412533pt;}
.y166{bottom:324.416400pt;}
.y11d{bottom:324.581733pt;}
.yd5{bottom:334.768933pt;}
.y21c{bottom:336.027600pt;}
.y52{bottom:339.326533pt;}
.ye9{bottom:340.006267pt;}
.y1ee{bottom:340.016933pt;}
.y18b{bottom:340.128933pt;}
.y137{bottom:340.176933pt;}
.ya3{bottom:340.208933pt;}
.y1bf{bottom:340.400933pt;}
.y77{bottom:341.745867pt;}
.y11c{bottom:341.909733pt;}
.yd4{bottom:352.096933pt;}
.y21b{bottom:353.355600pt;}
.y51{bottom:356.654533pt;}
.y1e{bottom:356.909200pt;}
.ye8{bottom:357.339600pt;}
.y1ed{bottom:357.344933pt;}
.y18a{bottom:357.456933pt;}
.y136{bottom:357.504933pt;}
.ya2{bottom:357.536933pt;}
.y1be{bottom:357.728933pt;}
.y76{bottom:359.079200pt;}
.y165{bottom:359.083067pt;}
.y11b{bottom:359.237733pt;}
.yd3{bottom:369.424933pt;}
.y21a{bottom:370.683600pt;}
.y1d{bottom:372.909200pt;}
.y50{bottom:373.982533pt;}
.ye7{bottom:374.672933pt;}
.y189{bottom:374.784933pt;}
.y135{bottom:374.832933pt;}
.ya1{bottom:374.864933pt;}
.y1bd{bottom:375.056933pt;}
.y75{bottom:376.412533pt;}
.y164{bottom:376.416400pt;}
.y11a{bottom:376.565733pt;}
.yd2{bottom:386.752933pt;}
.y219{bottom:388.011600pt;}
.y4f{bottom:391.310533pt;}
.ye6{bottom:392.006267pt;}
.y1ec{bottom:392.011600pt;}
.y188{bottom:392.112933pt;}
.y134{bottom:392.160933pt;}
.ya0{bottom:392.192933pt;}
.y1bc{bottom:392.384933pt;}
.y74{bottom:393.745867pt;}
.y163{bottom:393.749733pt;}
.y119{bottom:393.893733pt;}
.yd1{bottom:404.080933pt;}
.y218{bottom:405.339600pt;}
.y4e{bottom:408.638533pt;}
.ye5{bottom:409.339600pt;}
.y187{bottom:409.440933pt;}
.y133{bottom:409.488933pt;}
.y9f{bottom:409.520933pt;}
.y1bb{bottom:409.712933pt;}
.y73{bottom:411.079200pt;}
.y162{bottom:411.083067pt;}
.y118{bottom:411.221733pt;}
.y1c{bottom:420.909200pt;}
.yd0{bottom:421.408933pt;}
.y217{bottom:422.688933pt;}
.y4d{bottom:425.966533pt;}
.ye4{bottom:426.672933pt;}
.y1eb{bottom:426.683600pt;}
.y186{bottom:426.768933pt;}
.y132{bottom:426.816933pt;}
.y9e{bottom:426.848933pt;}
.y1ba{bottom:427.040933pt;}
.y72{bottom:428.412533pt;}
.y161{bottom:428.416400pt;}
.y117{bottom:428.549733pt;}
.y1b{bottom:436.909200pt;}
.ycf{bottom:438.736933pt;}
.y216{bottom:440.016933pt;}
.y4c{bottom:443.294533pt;}
.ye3{bottom:444.006267pt;}
.y1ea{bottom:444.011600pt;}
.y185{bottom:444.096933pt;}
.y9d{bottom:444.176933pt;}
.y1b9{bottom:444.368933pt;}
.y71{bottom:445.745867pt;}
.y160{bottom:445.749733pt;}
.y116{bottom:445.877733pt;}
.y1a{bottom:452.909200pt;}
.yce{bottom:456.064933pt;}
.y215{bottom:457.344933pt;}
.y4b{bottom:460.622533pt;}
.ye2{bottom:461.339600pt;}
.y184{bottom:461.424933pt;}
.y131{bottom:461.488933pt;}
.y9c{bottom:461.504933pt;}
.y1b8{bottom:461.696933pt;}
.y70{bottom:463.079200pt;}
.y15f{bottom:463.083067pt;}
.y115{bottom:463.205733pt;}
.y19{bottom:468.909200pt;}
.ycd{bottom:473.392933pt;}
.y214{bottom:474.672933pt;}
.y4a{bottom:477.950533pt;}
.y1e9{bottom:478.688933pt;}
.y183{bottom:478.752933pt;}
.y130{bottom:478.816933pt;}
.y9b{bottom:478.832933pt;}
.y1b7{bottom:479.024933pt;}
.y6f{bottom:480.412533pt;}
.y15e{bottom:480.416400pt;}
.y114{bottom:480.533733pt;}
.y18{bottom:484.909200pt;}
.ycc{bottom:490.720933pt;}
.y213{bottom:492.016933pt;}
.y49{bottom:495.278533pt;}
.y1e8{bottom:496.016933pt;}
.y182{bottom:496.080933pt;}
.y9a{bottom:496.160933pt;}
.y1b6{bottom:496.352933pt;}
.y6e{bottom:497.745867pt;}
.y15d{bottom:497.749733pt;}
.y113{bottom:497.861733pt;}
.y17{bottom:500.909200pt;}
.ycb{bottom:508.048933pt;}
.y212{bottom:509.344933pt;}
.y48{bottom:512.606533pt;}
.y1e7{bottom:513.344933pt;}
.y181{bottom:513.408933pt;}
.y99{bottom:513.488933pt;}
.y1b5{bottom:513.680933pt;}
.y6d{bottom:515.079200pt;}
.y15c{bottom:515.083067pt;}
.y112{bottom:515.189733pt;}
.y16{bottom:516.909200pt;}
.yca{bottom:525.376933pt;}
.y211{bottom:526.672933pt;}
.y47{bottom:529.934533pt;}
.y1e6{bottom:530.672933pt;}
.y180{bottom:530.736933pt;}
.y98{bottom:530.816933pt;}
.y1b4{bottom:531.008933pt;}
.y15b{bottom:532.416400pt;}
.y111{bottom:532.517733pt;}
.y15{bottom:532.909200pt;}
.yc9{bottom:542.704933pt;}
.y210{bottom:544.016933pt;}
.y46{bottom:547.262533pt;}
.y1e5{bottom:548.016933pt;}
.y17f{bottom:548.064933pt;}
.y97{bottom:548.144933pt;}
.y1b3{bottom:548.336933pt;}
.y14{bottom:548.909200pt;}
.y15a{bottom:549.749733pt;}
.y110{bottom:549.845733pt;}
.yc8{bottom:560.032933pt;}
.y20f{bottom:561.344933pt;}
.y45{bottom:564.590533pt;}
.y13{bottom:564.909200pt;}
.y1e4{bottom:565.344933pt;}
.y17e{bottom:565.392933pt;}
.y96{bottom:565.472933pt;}
.y1b2{bottom:565.664933pt;}
.y6c{bottom:567.079200pt;}
.y159{bottom:567.083067pt;}
.y10f{bottom:567.173733pt;}
.y7{bottom:574.070000pt;}
.yc7{bottom:577.360933pt;}
.y20e{bottom:578.672933pt;}
.y44{bottom:581.918533pt;}
.y1e3{bottom:582.672933pt;}
.y17d{bottom:582.720933pt;}
.y95{bottom:582.800933pt;}
.y1b1{bottom:582.992933pt;}
.y6b{bottom:584.412533pt;}
.y158{bottom:584.416400pt;}
.y10e{bottom:584.501733pt;}
.yc6{bottom:594.688933pt;}
.y12{bottom:596.909200pt;}
.y43{bottom:599.246533pt;}
.y1e2{bottom:600.022267pt;}
.y17c{bottom:600.048933pt;}
.y94{bottom:600.128933pt;}
.y1b0{bottom:600.320933pt;}
.y6a{bottom:601.745867pt;}
.y10d{bottom:601.829733pt;}
.y6{bottom:603.403333pt;}
.yc5{bottom:612.016933pt;}
.y20d{bottom:614.672933pt;}
.y42{bottom:616.574533pt;}
.y1e1{bottom:617.350267pt;}
.y17b{bottom:617.376933pt;}
.y93{bottom:617.456933pt;}
.y1af{bottom:617.648933pt;}
.y69{bottom:619.079200pt;}
.y10c{bottom:619.157733pt;}
.y157{bottom:619.184400pt;}
.y11{bottom:628.909200pt;}
.yc4{bottom:629.344933pt;}
.y41{bottom:633.902533pt;}
.y1e0{bottom:634.678267pt;}
.y17a{bottom:634.704933pt;}
.y92{bottom:634.784933pt;}
.y1ae{bottom:634.976933pt;}
.y68{bottom:636.412533pt;}
.y10b{bottom:636.485733pt;}
.y156{bottom:636.512400pt;}
.y5{bottom:636.736667pt;}
.y10{bottom:644.909200pt;}
.yc3{bottom:646.672933pt;}
.y40{bottom:651.230533pt;}
.y1df{bottom:652.006267pt;}
.y179{bottom:652.032933pt;}
.y91{bottom:652.112933pt;}
.y20c{bottom:652.118267pt;}
.y1ad{bottom:652.304933pt;}
.y67{bottom:653.745867pt;}
.y10a{bottom:653.813733pt;}
.y155{bottom:653.840400pt;}
.yf{bottom:660.909200pt;}
.y3f{bottom:668.558533pt;}
.y1de{bottom:669.344933pt;}
.y178{bottom:669.360933pt;}
.y90{bottom:669.440933pt;}
.y20b{bottom:669.446267pt;}
.y1ac{bottom:669.632933pt;}
.y66{bottom:671.079200pt;}
.y109{bottom:671.141733pt;}
.y154{bottom:671.168400pt;}
.ye{bottom:676.909200pt;}
.yc2{bottom:681.336933pt;}
.y3e{bottom:685.886533pt;}
.y1dd{bottom:686.672933pt;}
.y177{bottom:686.688933pt;}
.y8f{bottom:686.768933pt;}
.y20a{bottom:686.774267pt;}
.y1ab{bottom:686.960933pt;}
.y65{bottom:688.412533pt;}
.y108{bottom:688.469733pt;}
.y153{bottom:688.496400pt;}
.yd{bottom:692.909200pt;}
.yc1{bottom:701.339600pt;}
.y3d{bottom:703.214533pt;}
.y176{bottom:704.016933pt;}
.y1dc{bottom:704.038267pt;}
.y8e{bottom:704.096933pt;}
.y209{bottom:704.102267pt;}
.y1aa{bottom:704.288933pt;}
.y64{bottom:705.745867pt;}
.y107{bottom:705.797733pt;}
.y152{bottom:705.824400pt;}
.yc{bottom:708.909200pt;}
.y4{bottom:718.070000pt;}
.y3c{bottom:720.542533pt;}
.y175{bottom:721.344933pt;}
.y1db{bottom:721.366267pt;}
.y8d{bottom:721.424933pt;}
.y208{bottom:721.430267pt;}
.y1a9{bottom:721.616933pt;}
.y63{bottom:723.079200pt;}
.y106{bottom:723.125733pt;}
.y151{bottom:723.152400pt;}
.yb{bottom:724.909200pt;}
.y3b{bottom:737.870533pt;}
.y174{bottom:738.672933pt;}
.y1da{bottom:738.694267pt;}
.y8c{bottom:738.752933pt;}
.y207{bottom:738.758267pt;}
.y1a8{bottom:738.944933pt;}
.yc0{bottom:739.024933pt;}
.y62{bottom:740.412533pt;}
.y105{bottom:740.453733pt;}
.y150{bottom:740.480400pt;}
.y3a{bottom:755.198533pt;}
.y1d9{bottom:756.022267pt;}
.y8b{bottom:756.080933pt;}
.y206{bottom:756.086267pt;}
.y1a7{bottom:756.272933pt;}
.ybf{bottom:756.352933pt;}
.y61{bottom:757.745867pt;}
.y104{bottom:757.781733pt;}
.y14f{bottom:757.808400pt;}
.y3{bottom:758.070000pt;}
.y39{bottom:772.526533pt;}
.y173{bottom:773.339600pt;}
.y1d8{bottom:773.350267pt;}
.y8a{bottom:773.408933pt;}
.y205{bottom:773.414267pt;}
.y1a6{bottom:773.600933pt;}
.ybe{bottom:773.680933pt;}
.y60{bottom:775.079200pt;}
.y103{bottom:775.109733pt;}
.y14e{bottom:775.136400pt;}
.y38{bottom:789.854533pt;}
.y1d7{bottom:790.678267pt;}
.y89{bottom:790.736933pt;}
.y204{bottom:790.742267pt;}
.y1a5{bottom:790.928933pt;}
.ybd{bottom:791.008933pt;}
.y102{bottom:792.437733pt;}
.y14d{bottom:792.464400pt;}
.y37{bottom:807.182533pt;}
.y1d6{bottom:808.006267pt;}
.y88{bottom:808.064933pt;}
.y203{bottom:808.070267pt;}
.y1a4{bottom:808.256933pt;}
.ybc{bottom:808.336933pt;}
.y101{bottom:809.765733pt;}
.y14c{bottom:809.792400pt;}
.y36{bottom:824.510533pt;}
.y1d5{bottom:825.344933pt;}
.y87{bottom:825.392933pt;}
.y202{bottom:825.398267pt;}
.y1a3{bottom:825.584933pt;}
.ybb{bottom:825.664933pt;}
.y100{bottom:827.093733pt;}
.y14b{bottom:827.120400pt;}
.y2{bottom:838.070000pt;}
.y35{bottom:841.838533pt;}
.y1d4{bottom:842.672933pt;}
.y86{bottom:842.720933pt;}
.y201{bottom:842.726267pt;}
.y1a2{bottom:842.912933pt;}
.yba{bottom:842.992933pt;}
.yff{bottom:844.421733pt;}
.y14a{bottom:844.448400pt;}
.y34{bottom:859.166533pt;}
.y1d3{bottom:860.022267pt;}
.y85{bottom:860.048933pt;}
.y200{bottom:860.054267pt;}
.y1a1{bottom:860.240933pt;}
.yb9{bottom:860.320933pt;}
.yfe{bottom:861.749733pt;}
.y149{bottom:861.776400pt;}
.y33{bottom:876.494533pt;}
.y1d2{bottom:877.350267pt;}
.y84{bottom:877.376933pt;}
.y1ff{bottom:877.382267pt;}
.y1a0{bottom:877.568933pt;}
.yb8{bottom:877.648933pt;}
.y1{bottom:878.070000pt;}
.y148{bottom:879.104400pt;}
.y32{bottom:893.822533pt;}
.y1d1{bottom:894.678267pt;}
.y83{bottom:894.704933pt;}
.y1fe{bottom:894.710267pt;}
.y19f{bottom:894.896933pt;}
.yb7{bottom:894.976933pt;}
.yfd{bottom:896.416400pt;}
.y147{bottom:896.432400pt;}
.y31{bottom:911.150533pt;}
.y1d0{bottom:912.006267pt;}
.y22b{bottom:912.016933pt;}
.y82{bottom:912.032933pt;}
.y1fd{bottom:912.038267pt;}
.y19e{bottom:912.224933pt;}
.yb6{bottom:912.304933pt;}
.yfc{bottom:913.749733pt;}
.y146{bottom:913.760400pt;}
.y30{bottom:928.478533pt;}
.y22a{bottom:929.344933pt;}
.y1cf{bottom:929.350267pt;}
.y81{bottom:929.360933pt;}
.y1fc{bottom:929.366267pt;}
.y19d{bottom:929.552933pt;}
.yb5{bottom:929.632933pt;}
.yfb{bottom:931.083067pt;}
.y145{bottom:931.088400pt;}
.y2f{bottom:945.806533pt;}
.y229{bottom:946.672933pt;}
.y1ce{bottom:946.678267pt;}
.y80{bottom:946.688933pt;}
.y1fb{bottom:946.694267pt;}
.y19c{bottom:946.880933pt;}
.yb4{bottom:946.960933pt;}
.yfa{bottom:948.416400pt;}
.y2e{bottom:963.134533pt;}
.y1cd{bottom:964.006267pt;}
.y7f{bottom:964.016933pt;}
.y1fa{bottom:964.022267pt;}
.y19b{bottom:964.208933pt;}
.yb3{bottom:964.288933pt;}
.yf9{bottom:965.749733pt;}
.y7e{bottom:981.344933pt;}
.y1f9{bottom:981.350267pt;}
.y19a{bottom:981.536933pt;}
.yb2{bottom:981.616933pt;}
.yf8{bottom:983.083067pt;}
.y2d{bottom:997.801200pt;}
.y7d{bottom:998.672933pt;}
.y1f8{bottom:998.678267pt;}
.y199{bottom:998.864933pt;}
.yb1{bottom:998.944933pt;}
.yf7{bottom:1000.416400pt;}
.y29{bottom:1058.519600pt;}
.h14{height:33.769531pt;}
.h13{height:35.546875pt;}
.he{height:39.101562pt;}
.hf{height:40.171875pt;}
.hd{height:42.403646pt;}
.h11{height:42.656250pt;}
.hc{height:44.437500pt;}
.ha{height:44.468750pt;}
.h12{height:44.635417pt;}
.h16{height:46.210938pt;}
.h7{height:46.867188pt;}
.h15{height:49.098958pt;}
.h10{height:50.028977pt;}
.hb{height:51.843750pt;}
.h9{height:51.880208pt;}
.h8{height:53.562500pt;}
.h4{height:55.585938pt;}
.h6{height:66.953125pt;}
.h3{height:74.114583pt;}
.h5{height:80.343750pt;}
.h2{height:92.643229pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:83.149600pt;}
.x15{left:94.490400pt;}
.x2{left:100.215200pt;}
.x17{left:109.602400pt;}
.x1b{left:132.281600pt;}
.x1{left:135.815200pt;}
.x3{left:145.248533pt;}
.x1a{left:147.401600pt;}
.x4{left:176.081867pt;}
.x8{left:187.331333pt;}
.xf{left:198.091200pt;}
.x10{left:203.668667pt;}
.xc{left:204.866000pt;}
.x11{left:238.740667pt;}
.x9{left:254.318533pt;}
.x12{left:266.974000pt;}
.x6{left:272.445333pt;}
.x5{left:290.952000pt;}
.x7{left:325.712667pt;}
.x16{left:337.794933pt;}
.xe{left:391.209733pt;}
.xa{left:394.124933pt;}
.xb{left:403.128400pt;}
.x14{left:404.848533pt;}
.x13{left:419.968533pt;}
.x19{left:442.643733pt;}
.x18{left:457.763733pt;}
}

