
    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_8902780c1f98f0831c225985.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_115d1ff846380d44c59a9792.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_288c2d7a4a13ed6c22675cc6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0352d81f60b70a12cd466569.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_a387a0b11933ab4dfd9f0da9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.025879;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_a1ee933d43339c5d15b2a34e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_b123403da48eef8f43bb40fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-14.400000px;}
.v3{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.560000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.078816px;}
.ls0{letter-spacing:0.108612px;}
.ls5{letter-spacing:0.293088px;}
.lsb{letter-spacing:0.297006px;}
.ls4{letter-spacing:0.798816px;}
.ls6{letter-spacing:1.013088px;}
.lsc{letter-spacing:14.319900px;}
.lsa{letter-spacing:17.205900px;}
.ls9{letter-spacing:39.520560px;}
.ls8{letter-spacing:39.550560px;}
.ls7{letter-spacing:113.697884px;}
.ls1{letter-spacing:1033.785153px;}
.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;}
}
.ws13{word-spacing:-32.101200px;}
.wse{word-spacing:-15.390000px;}
.ws8{word-spacing:-14.865000px;}
.ws5{word-spacing:-14.541000px;}
.wsd{word-spacing:-13.879500px;}
.ws11{word-spacing:-13.375500px;}
.ws0{word-spacing:-13.140000px;}
.wsf{word-spacing:-11.956500px;}
.ws2{word-spacing:-11.737500px;}
.ws18{word-spacing:-9.660000px;}
.ws19{word-spacing:-9.300000px;}
.ws9{word-spacing:-8.671500px;}
.ws12{word-spacing:-7.801500px;}
.wsc{word-spacing:-0.906000px;}
.wsb{word-spacing:0.000000px;}
.ws6{word-spacing:10.411505px;}
.ws14{word-spacing:30.648086px;}
.ws4{word-spacing:41.536832px;}
.ws1a{word-spacing:52.334222px;}
.ws10{word-spacing:53.766394px;}
.ws1b{word-spacing:62.419395px;}
.ws3{word-spacing:63.850985px;}
.ws1{word-spacing:73.215622px;}
.ws7{word-spacing:116.366674px;}
.ws17{word-spacing:120.826637px;}
.ws16{word-spacing:366.615868px;}
.ws15{word-spacing:478.358801px;}
.wsa{word-spacing:1016.219656px;}
._22{margin-left:-461.526042px;}
._52{margin-left:-437.677500px;}
._66{margin-left:-381.936372px;}
._2b{margin-left:-371.371675px;}
._61{margin-left:-369.054474px;}
._35{margin-left:-364.582705px;}
._63{margin-left:-321.691691px;}
._5a{margin-left:-266.162846px;}
._23{margin-left:-261.006448px;}
._41{margin-left:-250.267371px;}
._59{margin-left:-243.597593px;}
._3a{margin-left:-233.823939px;}
._55{margin-left:-226.801500px;}
._64{margin-left:-223.073280px;}
._56{margin-left:-219.390943px;}
._5b{margin-left:-209.206677px;}
._5e{margin-left:-206.509143px;}
._51{margin-left:-201.202938px;}
._5f{margin-left:-200.029143px;}
._58{margin-left:-180.984368px;}
._57{margin-left:-171.266754px;}
._21{margin-left:-168.075523px;}
._39{margin-left:-166.168539px;}
._50{margin-left:-162.618794px;}
._60{margin-left:-157.014513px;}
._46{margin-left:-153.827831px;}
._26{margin-left:-152.351207px;}
._20{margin-left:-150.066516px;}
._54{margin-left:-148.991830px;}
._65{margin-left:-146.708813px;}
._62{margin-left:-145.358407px;}
._3f{margin-left:-141.675551px;}
._3c{margin-left:-139.948775px;}
._27{margin-left:-135.890181px;}
._43{margin-left:-134.134819px;}
._3e{margin-left:-130.869028px;}
._4a{margin-left:-128.798375px;}
._40{margin-left:-126.260479px;}
._53{margin-left:-122.338848px;}
._28{margin-left:-119.934269px;}
._44{margin-left:-114.112974px;}
._24{margin-left:-111.995348px;}
._31{margin-left:-110.900987px;}
._42{margin-left:-108.200640px;}
._69{margin-left:-105.480361px;}
._5d{margin-left:-101.326163px;}
._4b{margin-left:-99.636933px;}
._32{margin-left:-98.390186px;}
._33{margin-left:-96.726436px;}
._49{margin-left:-93.957386px;}
._48{margin-left:-92.428760px;}
._47{margin-left:-90.433603px;}
._2f{margin-left:-86.998315px;}
._6b{margin-left:-83.866111px;}
._4c{margin-left:-81.955920px;}
._34{margin-left:-80.117177px;}
._2e{margin-left:-78.577456px;}
._3b{margin-left:-77.274505px;}
._36{margin-left:-75.824938px;}
._45{margin-left:-73.144132px;}
._2c{margin-left:-70.947672px;}
._29{margin-left:-68.785944px;}
._2a{margin-left:-66.733445px;}
._3d{margin-left:-60.599730px;}
._2d{margin-left:-52.324859px;}
._6a{margin-left:-48.726624px;}
._5c{margin-left:-43.696857px;}
._1f{margin-left:-39.934026px;}
._30{margin-left:-37.738680px;}
._25{margin-left:-33.191970px;}
._68{margin-left:-29.406238px;}
._19{margin-left:-2.416769px;}
._1{margin-left:-1.281298px;}
._0{width:1.177764px;}
._6{width:2.375239px;}
._16{width:3.712098px;}
._8{width:5.508393px;}
._7{width:6.825810px;}
._9{width:7.833017px;}
._d{width:9.461956px;}
._c{width:10.526559px;}
._5{width:11.921912px;}
._1a{width:13.405949px;}
._e{width:14.673964px;}
._3{width:15.869776px;}
._2{width:16.877216px;}
._1b{width:18.377268px;}
._13{width:19.868302px;}
._4{width:21.364536px;}
._1e{width:23.163002px;}
._18{width:24.317208px;}
._11{width:25.887272px;}
._1d{width:27.437585px;}
._10{width:28.474906px;}
._f{width:30.189097px;}
._b{width:32.093556px;}
._a{width:33.508840px;}
._81{width:34.946269px;}
._4e{width:36.268863px;}
._4f{width:37.361810px;}
._83{width:39.215210px;}
._4d{width:41.537819px;}
._17{width:43.248249px;}
._14{width:45.965555px;}
._15{width:47.124247px;}
._1c{width:48.369124px;}
._82{width:49.771924px;}
._12{width:51.636626px;}
._37{width:53.758138px;}
._38{width:55.188595px;}
._79{width:58.815627px;}
._6f{width:60.045012px;}
._78{width:63.858432px;}
._67{width:69.507958px;}
._77{width:73.435246px;}
._6e{width:75.298786px;}
._7f{width:76.909734px;}
._76{width:79.512698px;}
._71{width:80.741426px;}
._70{width:85.680745px;}
._7a{width:90.318240px;}
._72{width:96.994521px;}
._75{width:100.087963px;}
._7b{width:102.564350px;}
._6d{width:105.850747px;}
._7c{width:108.138433px;}
._7d{width:110.596547px;}
._6c{width:113.400166px;}
._7e{width:125.003765px;}
._74{width:130.386113px;}
._73{width:137.590027px;}
._80{width:1186.315500px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:21.696000px;}
.fs11{font-size:22.542000px;}
.fsb{font-size:31.206000px;}
.fse{font-size:32.760000px;}
.fs5{font-size:34.686000px;}
.fs12{font-size:37.200000px;}
.fs14{font-size:37.842000px;}
.fs10{font-size:38.640000px;}
.fs3{font-size:46.950000px;}
.fs9{font-size:47.826000px;}
.fs2{font-size:52.560000px;}
.fsa{font-size:53.502000px;}
.fs7{font-size:55.518000px;}
.fsf{font-size:56.160000px;}
.fs1{font-size:58.164000px;}
.fs6{font-size:59.460000px;}
.fs8{font-size:61.560000px;}
.fsd{font-size:67.422000px;}
.fsc{font-size:80.250000px;}
.fs4{font-size:89.190000px;}
.fs0{font-size:140.160000px;}
.y0{bottom:0.000000px;}
.y14a{bottom:1.800597px;}
.y144{bottom:1.980597px;}
.y173{bottom:2.700749px;}
.y165{bottom:2.880748px;}
.y84{bottom:3.060597px;}
.y89{bottom:3.420597px;}
.yfe{bottom:4.320748px;}
.y133{bottom:117.781350px;}
.ya7{bottom:125.881200px;}
.y110{bottom:127.141350px;}
.yc8{bottom:133.801350px;}
.y66{bottom:133.801500px;}
.y1bf{bottom:141.001350px;}
.ya6{bottom:141.901200px;}
.y10f{bottom:143.161350px;}
.y65{bottom:147.181500px;}
.y132{bottom:149.821350px;}
.yc7{bottom:150.541350px;}
.y1be{bottom:154.141350px;}
.y17d{bottom:154.861350px;}
.ya5{bottom:157.741200px;}
.y10e{bottom:159.001350px;}
.y64{bottom:160.561500px;}
.y131{bottom:165.661350px;}
.y1bd{bottom:167.281350px;}
.yc6{bottom:167.461350px;}
.y17c{bottom:170.701350px;}
.ya4{bottom:173.761200px;}
.y63{bottom:173.941500px;}
.y10d{bottom:175.021350px;}
.y1bc{bottom:180.421350px;}
.y130{bottom:181.681350px;}
.yc5{bottom:184.201350px;}
.y17b{bottom:186.721350px;}
.y10c{bottom:190.861350px;}
.y1bb{bottom:193.561350px;}
.ya3{bottom:194.281200px;}
.y12f{bottom:197.521350px;}
.y17a{bottom:202.741350px;}
.y1ba{bottom:206.701350px;}
.y10b{bottom:206.881350px;}
.y12e{bottom:213.541350px;}
.yc4{bottom:215.881350px;}
.y5f{bottom:217.861350px;}
.y179{bottom:218.581350px;}
.y1b9{bottom:219.841350px;}
.y10a{bottom:222.721350px;}
.y32{bottom:223.261200px;}
.y62{bottom:223.261350px;}
.ya2{bottom:223.981200px;}
.y5e{bottom:228.481350px;}
.yc3{bottom:229.201350px;}
.y60{bottom:231.901350px;}
.y1b8{bottom:232.981350px;}
.y178{bottom:234.601350px;}
.y12d{bottom:238.201350px;}
.y31{bottom:239.281200px;}
.ya1{bottom:240.001200px;}
.yc2{bottom:242.521350px;}
.y109{bottom:243.421350px;}
.y1b7{bottom:246.121350px;}
.y61{bottom:247.021350px;}
.y177{bottom:250.441350px;}
.y12c{bottom:254.221350px;}
.y30{bottom:255.301200px;}
.ya0{bottom:255.841200px;}
.y1b6{bottom:259.261350px;}
.y5d{bottom:268.261350px;}
.y12b{bottom:270.061350px;}
.y2f{bottom:271.141200px;}
.y9f{bottom:271.861200px;}
.y1b5{bottom:272.401350px;}
.y108{bottom:273.121350px;}
.y176{bottom:279.421350px;}
.y5c{bottom:284.101350px;}
.y1b4{bottom:285.541350px;}
.y12a{bottom:286.081350px;}
.y2e{bottom:287.161200px;}
.y9e{bottom:287.881200px;}
.y107{bottom:288.961350px;}
.y175{bottom:293.641350px;}
.y1b3{bottom:298.681350px;}
.y5b{bottom:300.121350px;}
.y129{bottom:301.921350px;}
.y2d{bottom:303.001200px;}
.y9d{bottom:303.721200px;}
.y174{bottom:307.681350px;}
.y1b2{bottom:311.821350px;}
.y102{bottom:313.261350px;}
.y5a{bottom:316.141350px;}
.y128{bottom:317.941350px;}
.y172{bottom:319.020600px;}
.y2c{bottom:319.021200px;}
.y9c{bottom:319.741200px;}
.y104{bottom:320.461350px;}
.y101{bottom:321.541350px;}
.y106{bottom:324.061350px;}
.y1b1{bottom:324.961350px;}
.y103{bottom:327.661350px;}
.y105{bottom:331.261350px;}
.y59{bottom:332.161350px;}
.y2b{bottom:334.861200px;}
.y9b{bottom:335.581200px;}
.y171{bottom:335.941350px;}
.y1b0{bottom:338.101350px;}
.y127{bottom:342.601350px;}
.y58{bottom:348.001350px;}
.y170{bottom:350.161350px;}
.y2a{bottom:350.881200px;}
.y1af{bottom:351.241350px;}
.y9a{bottom:351.601200px;}
.y100{bottom:356.461350px;}
.y126{bottom:358.621350px;}
.y57{bottom:364.021350px;}
.y16f{bottom:364.381350px;}
.y29{bottom:366.901200px;}
.yff{bottom:372.481350px;}
.y125{bottom:374.461350px;}
.y16e{bottom:375.720600px;}
.y99{bottom:376.261200px;}
.y1ae{bottom:377.521350px;}
.y16d{bottom:378.601350px;}
.y56{bottom:380.041350px;}
.y28{bottom:382.741200px;}
.y124{bottom:390.481350px;}
.y1ad{bottom:390.661350px;}
.y16a{bottom:391.921350px;}
.y98{bottom:392.281200px;}
.y55{bottom:395.881350px;}
.yfa{bottom:398.401350px;}
.y27{bottom:398.761200px;}
.yf8{bottom:401.821350px;}
.y16c{bottom:402.540600px;}
.y1ac{bottom:403.801350px;}
.y169{bottom:405.421350px;}
.y123{bottom:406.501350px;}
.y97{bottom:408.121200px;}
.y26{bottom:414.601200px;}
.y16b{bottom:416.040600px;}
.y54{bottom:416.581350px;}
.y1ab{bottom:416.941350px;}
.y168{bottom:418.921350px;}
.y122{bottom:422.341350px;}
.yfc{bottom:422.701350px;}
.y96{bottom:424.141200px;}
.yfd{bottom:428.100600px;}
.y164{bottom:430.080600px;}
.y1aa{bottom:430.081350px;}
.y25{bottom:430.621200px;}
.yfb{bottom:432.061350px;}
.y166{bottom:432.961350px;}
.yf9{bottom:435.481350px;}
.y121{bottom:438.361350px;}
.y95{bottom:439.981200px;}
.y1a9{bottom:443.221350px;}
.y167{bottom:443.400600px;}
.y52{bottom:443.401200px;}
.y53{bottom:443.401350px;}
.y161{bottom:446.281350px;}
.y24{bottom:446.461200px;}
.y163{bottom:447.001350px;}
.y120{bottom:454.201350px;}
.y94{bottom:456.001200px;}
.y1a8{bottom:456.361350px;}
.y162{bottom:460.501350px;}
.y23{bottom:462.481200px;}
.yf7{bottom:463.021200px;}
.y1a7{bottom:469.501350px;}
.y11f{bottom:470.221350px;}
.y93{bottom:472.021200px;}
.y51{bottom:474.541200px;}
.yf6{bottom:478.861200px;}
.y1a6{bottom:482.641350px;}
.y160{bottom:483.181350px;}
.y11e{bottom:486.061350px;}
.y22{bottom:487.321200px;}
.y92{bottom:487.861200px;}
.y50{bottom:490.561200px;}
.yf5{bottom:494.881200px;}
.y15f{bottom:495.241350px;}
.y1a5{bottom:495.781350px;}
.y11d{bottom:502.081350px;}
.y21{bottom:503.341200px;}
.y91{bottom:503.881200px;}
.y4f{bottom:506.401200px;}
.y1a4{bottom:508.921200px;}
.yf4{bottom:510.901200px;}
.y15e{bottom:517.021050px;}
.y11c{bottom:518.101350px;}
.y20{bottom:519.181200px;}
.y90{bottom:519.721200px;}
.y1a3{bottom:522.061200px;}
.y4e{bottom:522.421200px;}
.yf3{bottom:526.741200px;}
.y15d{bottom:532.861050px;}
.y11b{bottom:534.121350px;}
.y1f{bottom:535.201200px;}
.y8f{bottom:535.741200px;}
.y4d{bottom:538.261200px;}
.yf2{bottom:542.761200px;}
.y1a2{bottom:548.341200px;}
.y15c{bottom:548.881050px;}
.ycc{bottom:548.881200px;}
.y1e{bottom:551.221200px;}
.y8e{bottom:551.581200px;}
.yce{bottom:552.121200px;}
.y4c{bottom:554.281200px;}
.yc9{bottom:556.441200px;}
.yf1{bottom:558.601200px;}
.y1a1{bottom:561.481200px;}
.y11a{bottom:564.001200px;}
.y15b{bottom:564.721050px;}
.y1d{bottom:567.061200px;}
.y8d{bottom:567.601200px;}
.yca{bottom:567.961200px;}
.ycf{bottom:569.941200px;}
.y4b{bottom:570.301200px;}
.y1a0{bottom:574.621200px;}
.yf0{bottom:574.801200px;}
.y119{bottom:577.501200px;}
.ycb{bottom:579.481200px;}
.y15a{bottom:580.741050px;}
.y1c{bottom:583.081200px;}
.y8c{bottom:583.621200px;}
.y4a{bottom:586.141200px;}
.ycd{bottom:587.041200px;}
.y19f{bottom:587.761200px;}
.yd0{bottom:587.941200px;}
.yef{bottom:590.641200px;}
.y118{bottom:590.821200px;}
.y159{bottom:596.761050px;}
.y1b{bottom:598.921200px;}
.y8b{bottom:599.461200px;}
.y19e{bottom:600.901200px;}
.y49{bottom:602.161200px;}
.yee{bottom:606.661200px;}
.y158{bottom:612.601050px;}
.y19d{bottom:614.041200px;}
.y1a{bottom:614.941200px;}
.y8a{bottom:615.481200px;}
.y48{bottom:618.001200px;}
.yed{bottom:622.681200px;}
.y19c{bottom:627.181200px;}
.y157{bottom:628.621050px;}
.y88{bottom:630.420600px;}
.y19{bottom:630.781200px;}
.y148{bottom:632.400600px;}
.y47{bottom:634.021200px;}
.y87{bottom:634.921200px;}
.y149{bottom:635.460600px;}
.yec{bottom:638.521200px;}
.y19b{bottom:640.321200px;}
.y156{bottom:644.461050px;}
.y18{bottom:646.801200px;}
.y46{bottom:649.861200px;}
.y86{bottom:651.481200px;}
.y19a{bottom:653.461200px;}
.yeb{bottom:654.541200px;}
.y145{bottom:655.440600px;}
.y155{bottom:660.481050px;}
.yc1{bottom:662.461200px;}
.y199{bottom:666.601200px;}
.y85{bottom:667.501200px;}
.y17{bottom:668.761200px;}
.yea{bottom:670.381200px;}
.y13d{bottom:673.801200px;}
.y45{bottom:674.701200px;}
.y13f{bottom:675.961200px;}
.y154{bottom:676.321050px;}
.yc0{bottom:679.201200px;}
.y13b{bottom:679.741200px;}
.y142{bottom:680.821200px;}
.y143{bottom:681.720600px;}
.y140{bottom:683.161200px;}
.y13c{bottom:683.341200px;}
.ye9{bottom:686.401200px;}
.y13e{bottom:689.281200px;}
.y141{bottom:689.821200px;}
.y44{bottom:690.541200px;}
.y81{bottom:690.721200px;}
.y153{bottom:692.341050px;}
.y7d{bottom:692.341200px;}
.y198{bottom:692.881200px;}
.ybf{bottom:695.941200px;}
.y80{bottom:697.561200px;}
.y7c{bottom:703.321200px;}
.y16{bottom:705.121050px;}
.y197{bottom:706.021200px;}
.y43{bottom:706.741200px;}
.ye8{bottom:707.101200px;}
.y152{bottom:708.541050px;}
.y82{bottom:710.881200px;}
.y7f{bottom:711.961200px;}
.ybe{bottom:712.861200px;}
.y196{bottom:719.161200px;}
.y15{bottom:720.241050px;}
.y42{bottom:722.581200px;}
.y151{bottom:724.381050px;}
.ybd{bottom:729.421200px;}
.y83{bottom:733.020600px;}
.ye6{bottom:733.921050px;}
.ye7{bottom:733.921200px;}
.y14{bottom:735.181050px;}
.y7e{bottom:736.081200px;}
.y136{bottom:738.421200px;}
.y41{bottom:738.601200px;}
.y194{bottom:739.141050px;}
.y195{bottom:739.141200px;}
.y150{bottom:740.401050px;}
.y138{bottom:740.761200px;}
.y134{bottom:744.541200px;}
.y13a{bottom:745.801200px;}
.ybc{bottom:746.341200px;}
.y147{bottom:747.420600px;}
.y137{bottom:748.141200px;}
.y135{bottom:748.321200px;}
.y146{bottom:749.041200px;}
.y13{bottom:750.481050px;}
.y40{bottom:754.621200px;}
.y117{bottom:754.801200px;}
.y139{bottom:755.161200px;}
.y14f{bottom:756.241050px;}
.y7b{bottom:762.361050px;}
.ybb{bottom:763.081200px;}
.y193{bottom:764.521050px;}
.ye5{bottom:765.061050px;}
.y12{bottom:765.601050px;}
.y3f{bottom:770.461200px;}
.y14e{bottom:772.261050px;}
.y7a{bottom:778.381050px;}
.yba{bottom:780.001200px;}
.y192{bottom:780.541050px;}
.y11{bottom:780.721050px;}
.ye4{bottom:781.081050px;}
.y3e{bottom:786.481200px;}
.y79{bottom:794.221050px;}
.y10{bottom:795.661050px;}
.y191{bottom:796.381050px;}
.yb9{bottom:796.741200px;}
.ye3{bottom:796.921050px;}
.y3d{bottom:802.321200px;}
.y78{bottom:810.241050px;}
.yf{bottom:810.961050px;}
.y190{bottom:812.401050px;}
.ye2{bottom:812.941050px;}
.yb8{bottom:813.481200px;}
.y3c{bottom:818.341200px;}
.ye{bottom:826.081050px;}
.y77{bottom:826.261050px;}
.y18f{bottom:828.241050px;}
.ye1{bottom:828.781050px;}
.yb7{bottom:831.301200px;}
.y3b{bottom:834.181200px;}
.yd{bottom:841.021050px;}
.y76{bottom:842.101050px;}
.y18e{bottom:844.261050px;}
.ye0{bottom:844.801050px;}
.yb6{bottom:848.041200px;}
.y3a{bottom:850.201200px;}
.yc{bottom:856.141050px;}
.y75{bottom:858.121050px;}
.y18d{bottom:860.101050px;}
.ydf{bottom:860.641050px;}
.yb5{bottom:864.961200px;}
.y39{bottom:866.221200px;}
.yb{bottom:871.441050px;}
.y74{bottom:873.961050px;}
.y18c{bottom:876.121050px;}
.yde{bottom:876.661050px;}
.yb4{bottom:881.701200px;}
.y38{bottom:882.061200px;}
.ya{bottom:886.381050px;}
.y73{bottom:889.981050px;}
.y18b{bottom:892.141050px;}
.ydd{bottom:892.681050px;}
.y37{bottom:898.081200px;}
.yb3{bottom:898.621200px;}
.y9{bottom:901.501050px;}
.y72{bottom:906.001050px;}
.y18a{bottom:907.981050px;}
.ydc{bottom:908.521050px;}
.y36{bottom:913.921200px;}
.yb2{bottom:915.181200px;}
.y8{bottom:916.621050px;}
.y71{bottom:921.841050px;}
.y189{bottom:924.001050px;}
.ydb{bottom:924.541050px;}
.y35{bottom:929.941200px;}
.y7{bottom:931.921050px;}
.yb1{bottom:932.101200px;}
.y70{bottom:937.861050px;}
.y188{bottom:939.841050px;}
.yda{bottom:940.381050px;}
.y34{bottom:945.781200px;}
.y14d{bottom:946.321050px;}
.y6{bottom:946.861050px;}
.yb0{bottom:948.841200px;}
.y6f{bottom:953.701050px;}
.y187{bottom:955.861050px;}
.yd9{bottom:956.401050px;}
.y33{bottom:961.801200px;}
.y5{bottom:961.981050px;}
.y14c{bottom:963.241050px;}
.yaf{bottom:965.581200px;}
.y6e{bottom:969.721050px;}
.y186{bottom:971.701050px;}
.yd8{bottom:972.421050px;}
.yae{bottom:982.501200px;}
.y6d{bottom:985.561050px;}
.y185{bottom:987.721050px;}
.yd7{bottom:988.441050px;}
.y14b{bottom:994.381050px;}
.y4{bottom:994.921050px;}
.yad{bottom:999.241200px;}
.y184{bottom:1003.741050px;}
.yd6{bottom:1004.461050px;}
.y6c{bottom:1010.401050px;}
.y116{bottom:1010.401350px;}
.y3{bottom:1011.661050px;}
.yac{bottom:1015.981200px;}
.y183{bottom:1019.581050px;}
.yd5{bottom:1021.381050px;}
.y6b{bottom:1026.241050px;}
.y115{bottom:1026.241350px;}
.y182{bottom:1035.601050px;}
.yd4{bottom:1038.121050px;}
.y6a{bottom:1042.261050px;}
.yab{bottom:1042.261200px;}
.y114{bottom:1042.261350px;}
.y2{bottom:1044.421050px;}
.y181{bottom:1051.441050px;}
.yd3{bottom:1055.041050px;}
.y69{bottom:1058.101050px;}
.yaa{bottom:1058.101200px;}
.y113{bottom:1058.101350px;}
.y180{bottom:1067.461050px;}
.yd2{bottom:1072.861050px;}
.y68{bottom:1074.121050px;}
.ya9{bottom:1074.121200px;}
.y112{bottom:1074.121350px;}
.y1{bottom:1074.301050px;}
.y17f{bottom:1089.601050px;}
.y17e{bottom:1089.601350px;}
.yd1{bottom:1089.781050px;}
.y67{bottom:1090.141050px;}
.ya8{bottom:1090.141200px;}
.y111{bottom:1090.141350px;}
.h30{height:12.240000px;}
.h2f{height:12.420000px;}
.h34{height:13.140000px;}
.h33{height:13.320000px;}
.h2d{height:15.074906px;}
.h28{height:15.662728px;}
.h11{height:16.380000px;}
.h12{height:17.460000px;}
.h1b{height:21.667447px;}
.h19{height:21.682685px;}
.h1e{height:21.780000px;}
.h21{height:22.746445px;}
.h7{height:23.343678px;}
.hb{height:24.083736px;}
.h9{height:24.100673px;}
.h22{height:24.593906px;}
.h2b{height:25.035600px;}
.h2e{height:25.829297px;}
.h2c{height:25.847461px;}
.h26{height:26.004720px;}
.h31{height:26.293538px;}
.h29{height:26.829141px;}
.h27{height:26.848008px;}
.h32{height:31.819629px;}
.h15{height:32.186898px;}
.h4{height:32.621997px;}
.h35{height:32.622597px;}
.h17{height:33.207311px;}
.h16{height:33.230663px;}
.h2a{height:34.457227px;}
.h3{height:35.621719px;}
.h25{height:35.791055px;}
.h1c{height:36.006846px;}
.h1a{height:37.148361px;}
.h18{height:37.174485px;}
.hf{height:37.363614px;}
.he{height:38.548143px;}
.hd{height:38.575251px;}
.h23{height:38.993906px;}
.h24{height:39.021328px;}
.h8{height:40.016580px;}
.h5{height:40.385355px;}
.h2{height:40.413756px;}
.h13{height:41.429880px;}
.h14{height:44.299767px;}
.h1d{height:49.557272px;}
.h10{height:51.424632px;}
.h20{height:62.450944px;}
.h1f{height:74.333130px;}
.hc{height:75.845215px;}
.ha{height:75.874248px;}
.h6{height:82.613979px;}
.h1{height:97.386562px;}
.h0{height:1188.000000px;}
.w10{width:1.080000px;}
.w16{width:1.620000px;}
.w17{width:1.800000px;}
.w5{width:2.880000px;}
.w1a{width:3.240000px;}
.w13{width:3.960000px;}
.wa{width:5.400000px;}
.w1c{width:6.120000px;}
.w2{width:7.560000px;}
.w8{width:8.640000px;}
.w1{width:9.900000px;}
.w3{width:10.980000px;}
.w1f{width:11.880000px;}
.w1e{width:11.880720px;}
.wd{width:12.960000px;}
.wc{width:13.680000px;}
.w4{width:14.040000px;}
.w1d{width:14.580000px;}
.w1b{width:17.640000px;}
.w18{width:19.440000px;}
.w7{width:20.340000px;}
.w20{width:20.520000px;}
.w21{width:26.280000px;}
.w19{width:32.760000px;}
.w9{width:34.020000px;}
.wf{width:34.920000px;}
.w15{width:36.540000px;}
.w14{width:37.440000px;}
.w11{width:38.340000px;}
.we{width:38.520000px;}
.wb{width:39.600000px;}
.w12{width:40.140000px;}
.w6{width:40.680000px;}
.w0{width:918.000000px;}
.x84{left:-2.160151px;}
.x0{left:0.000000px;}
.x6b{left:14.579848px;}
.x1b{left:79.528500px;}
.x4{left:87.275700px;}
.x80{left:92.489250px;}
.x3b{left:94.649319px;}
.x7a{left:96.269250px;}
.x1a{left:100.588500px;}
.x88{left:102.029250px;}
.x7{left:108.149550px;}
.x99{left:120.029280px;}
.x1{left:127.589250px;}
.x75{left:129.568391px;}
.x3c{left:138.029250px;}
.x89{left:141.089250px;}
.x29{left:144.697949px;}
.x9a{left:147.929280px;}
.x81{left:161.789250px;}
.x2{left:163.950000px;}
.x2e{left:165.219129px;}
.x3d{left:168.810000px;}
.x76{left:174.930000px;}
.x8a{left:182.310000px;}
.x23{left:183.936891px;}
.x7f{left:185.010000px;}
.x78{left:186.262581px;}
.x9b{left:188.069280px;}
.x22{left:195.276084px;}
.x9c{left:199.950000px;}
.x28{left:201.755194px;}
.x21{left:203.375721px;}
.x7b{left:207.149850px;}
.x51{left:210.570000px;}
.x8b{left:213.270000px;}
.x5{left:214.529850px;}
.x7c{left:215.609850px;}
.x48{left:216.689107px;}
.x45{left:217.949850px;}
.x20{left:219.215212px;}
.x4c{left:220.469850px;}
.x27{left:223.714011px;}
.x8c{left:226.409850px;}
.x9d{left:238.830000px;}
.x49{left:242.788438px;}
.x2d{left:244.055299px;}
.x4f{left:245.489829px;}
.x6{left:249.994350px;}
.x8d{left:253.050000px;}
.x3{left:260.249186px;}
.x1f{left:264.033804px;}
.x8e{left:266.909850px;}
.x1e{left:276.453848px;}
.x31{left:281.130000px;}
.x26{left:282.751567px;}
.x9e{left:283.830000px;}
.x1d{left:285.994120px;}
.x7d{left:290.129850px;}
.x54{left:292.829326px;}
.x2c{left:297.513205px;}
.x8f{left:299.130000px;}
.x4a{left:300.569850px;}
.x90{left:302.909850px;}
.x30{left:304.710000px;}
.x82{left:306.149850px;}
.x83{left:309.569850px;}
.x43{left:311.009850px;}
.x55{left:312.269292px;}
.x9f{left:315.150000px;}
.x50{left:316.590000px;}
.xa0{left:318.930000px;}
.x53{left:322.169711px;}
.x3e{left:323.609850px;}
.x4e{left:325.225459px;}
.x3f{left:333.149850px;}
.x52{left:336.929850px;}
.x91{left:338.550000px;}
.x2b{left:340.711270px;}
.x92{left:342.509850px;}
.xa1{left:346.290000px;}
.x79{left:347.369850px;}
.x47{left:348.983183px;}
.x32{left:351.690000px;}
.x85{left:352.949850px;}
.x44{left:356.730978px;}
.x4b{left:359.251994px;}
.x2f{left:364.290000px;}
.xa2{left:366.810000px;}
.x77{left:370.949850px;}
.x46{left:373.641879px;}
.x4d{left:376.343270px;}
.x25{left:377.427227px;}
.x24{left:380.668282px;}
.x93{left:382.294350px;}
.x40{left:384.089850px;}
.x2a{left:385.167081px;}
.x1c{left:388.049850px;}
.x41{left:397.229850px;}
.xa3{left:410.730000px;}
.x94{left:417.030000px;}
.x86{left:419.910000px;}
.x96{left:422.070000px;}
.x87{left:427.469850px;}
.x97{left:430.709850px;}
.x95{left:435.390000px;}
.x7e{left:437.009850px;}
.xa4{left:438.990000px;}
.x42{left:445.829850px;}
.x98{left:451.590000px;}
.x8{left:468.691625px;}
.x33{left:471.749850px;}
.x57{left:473.189850px;}
.x58{left:478.226623px;}
.x35{left:481.647192px;}
.x34{left:483.987521px;}
.x9{left:489.563594px;}
.x14{left:494.791905px;}
.x67{left:496.769850px;}
.x19{left:498.931193px;}
.x66{left:503.789850px;}
.x59{left:507.027216px;}
.x63{left:509.728360px;}
.x61{left:516.749347px;}
.x72{left:533.670000px;}
.x62{left:535.109163px;}
.x65{left:537.629402px;}
.x64{left:540.869281px;}
.x60{left:545.729850px;}
.xa{left:552.022096px;}
.x68{left:561.570000px;}
.x69{left:564.450000px;}
.xd{left:580.289700px;}
.x15{left:581.369700px;}
.xe{left:583.529700px;}
.x16{left:588.929661px;}
.x10{left:590.909700px;}
.xb{left:594.509700px;}
.xa5{left:595.761507px;}
.x11{left:598.649553px;}
.x5f{left:601.889700px;}
.x6a{left:605.130000px;}
.x5e{left:608.549700px;}
.x17{left:612.329113px;}
.x5c{left:614.130524px;}
.x18{left:619.889074px;}
.x5b{left:621.510593px;}
.x12{left:623.669532px;}
.x6c{left:625.290000px;}
.x13{left:631.229494px;}
.x6d{left:633.750000px;}
.xa6{left:638.969700px;}
.x56{left:660.389700px;}
.x5d{left:662.729847px;}
.x6e{left:667.770000px;}
.x5a{left:670.469700px;}
.x6f{left:676.950000px;}
.xa7{left:687.749700px;}
.x71{left:703.050000px;}
.x70{left:716.550000px;}
.x3a{left:726.627923px;}
.xf{left:736.709700px;}
.x38{left:738.687889px;}
.x37{left:747.867797px;}
.xc{left:753.449700px;}
.x73{left:783.870000px;}
.x74{left:797.550000px;}
.x39{left:800.070183px;}
.x36{left:813.029700px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-12.800000pt;}
.v3{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.720000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.070059pt;}
.ls0{letter-spacing:0.096544pt;}
.ls5{letter-spacing:0.260523pt;}
.lsb{letter-spacing:0.264005pt;}
.ls4{letter-spacing:0.710059pt;}
.ls6{letter-spacing:0.900523pt;}
.lsc{letter-spacing:12.728800pt;}
.lsa{letter-spacing:15.294133pt;}
.ls9{letter-spacing:35.129387pt;}
.ls8{letter-spacing:35.156053pt;}
.ls7{letter-spacing:101.064786pt;}
.ls1{letter-spacing:918.920136pt;}
.ws13{word-spacing:-28.534400pt;}
.wse{word-spacing:-13.680000pt;}
.ws8{word-spacing:-13.213333pt;}
.ws5{word-spacing:-12.925333pt;}
.wsd{word-spacing:-12.337333pt;}
.ws11{word-spacing:-11.889333pt;}
.ws0{word-spacing:-11.680000pt;}
.wsf{word-spacing:-10.628000pt;}
.ws2{word-spacing:-10.433333pt;}
.ws18{word-spacing:-8.586667pt;}
.ws19{word-spacing:-8.266667pt;}
.ws9{word-spacing:-7.708000pt;}
.ws12{word-spacing:-6.934667pt;}
.wsc{word-spacing:-0.805333pt;}
.wsb{word-spacing:0.000000pt;}
.ws6{word-spacing:9.254672pt;}
.ws14{word-spacing:27.242743pt;}
.ws4{word-spacing:36.921628pt;}
.ws1a{word-spacing:46.519309pt;}
.ws10{word-spacing:47.792351pt;}
.ws1b{word-spacing:55.483906pt;}
.ws3{word-spacing:56.756431pt;}
.ws1{word-spacing:65.080553pt;}
.ws7{word-spacing:103.437044pt;}
.ws17{word-spacing:107.401455pt;}
.ws16{word-spacing:325.880772pt;}
.ws15{word-spacing:425.207824pt;}
.wsa{word-spacing:903.306361pt;}
._22{margin-left:-410.245371pt;}
._52{margin-left:-389.046667pt;}
._66{margin-left:-339.498998pt;}
._2b{margin-left:-330.108155pt;}
._61{margin-left:-328.048421pt;}
._35{margin-left:-324.073515pt;}
._63{margin-left:-285.948170pt;}
._5a{margin-left:-236.589196pt;}
._23{margin-left:-232.005732pt;}
._41{margin-left:-222.459886pt;}
._59{margin-left:-216.531194pt;}
._3a{margin-left:-207.843502pt;}
._55{margin-left:-201.601333pt;}
._64{margin-left:-198.287360pt;}
._56{margin-left:-195.014172pt;}
._5b{margin-left:-185.961491pt;}
._5e{margin-left:-183.563683pt;}
._51{margin-left:-178.847056pt;}
._5f{margin-left:-177.803683pt;}
._58{margin-left:-160.874994pt;}
._57{margin-left:-152.237114pt;}
._21{margin-left:-149.400464pt;}
._39{margin-left:-147.705368pt;}
._50{margin-left:-144.550039pt;}
._60{margin-left:-139.568456pt;}
._46{margin-left:-136.735850pt;}
._26{margin-left:-135.423295pt;}
._20{margin-left:-133.392458pt;}
._54{margin-left:-132.437182pt;}
._65{margin-left:-130.407834pt;}
._62{margin-left:-129.207473pt;}
._3f{margin-left:-125.933823pt;}
._3c{margin-left:-124.398911pt;}
._27{margin-left:-120.791272pt;}
._43{margin-left:-119.230950pt;}
._3e{margin-left:-116.328025pt;}
._4a{margin-left:-114.487444pt;}
._40{margin-left:-112.231537pt;}
._53{margin-left:-108.745642pt;}
._28{margin-left:-106.608239pt;}
._44{margin-left:-101.433755pt;}
._24{margin-left:-99.551420pt;}
._31{margin-left:-98.578655pt;}
._42{margin-left:-96.178347pt;}
._69{margin-left:-93.760321pt;}
._5d{margin-left:-90.067700pt;}
._4b{margin-left:-88.566163pt;}
._32{margin-left:-87.457943pt;}
._33{margin-left:-85.979054pt;}
._49{margin-left:-83.517677pt;}
._48{margin-left:-82.158897pt;}
._47{margin-left:-80.385425pt;}
._2f{margin-left:-77.331836pt;}
._6b{margin-left:-74.547654pt;}
._4c{margin-left:-72.849706pt;}
._34{margin-left:-71.215268pt;}
._2e{margin-left:-69.846628pt;}
._3b{margin-left:-68.688449pt;}
._36{margin-left:-67.399945pt;}
._45{margin-left:-65.017006pt;}
._2c{margin-left:-63.064597pt;}
._29{margin-left:-61.143062pt;}
._2a{margin-left:-59.318617pt;}
._3d{margin-left:-53.866426pt;}
._2d{margin-left:-46.510986pt;}
._6a{margin-left:-43.312555pt;}
._5c{margin-left:-38.841651pt;}
._1f{margin-left:-35.496912pt;}
._30{margin-left:-33.545493pt;}
._25{margin-left:-29.503973pt;}
._68{margin-left:-26.138878pt;}
._19{margin-left:-2.148239pt;}
._1{margin-left:-1.138932pt;}
._0{width:1.046902pt;}
._6{width:2.111324pt;}
._16{width:3.299642pt;}
._8{width:4.896349pt;}
._7{width:6.067386pt;}
._9{width:6.962682pt;}
._d{width:8.410628pt;}
._c{width:9.356941pt;}
._5{width:10.597255pt;}
._1a{width:11.916399pt;}
._e{width:13.043523pt;}
._3{width:14.106468pt;}
._2{width:15.001970pt;}
._1b{width:16.335349pt;}
._13{width:17.660713pt;}
._4{width:18.990699pt;}
._1e{width:20.589335pt;}
._18{width:21.615296pt;}
._11{width:23.010908pt;}
._1d{width:24.388964pt;}
._10{width:25.311027pt;}
._f{width:26.834753pt;}
._b{width:28.527606pt;}
._a{width:29.785635pt;}
._81{width:31.063350pt;}
._4e{width:32.238990pt;}
._4f{width:33.210498pt;}
._83{width:34.857965pt;}
._4d{width:36.922506pt;}
._17{width:38.442888pt;}
._14{width:40.858271pt;}
._15{width:41.888219pt;}
._1c{width:42.994777pt;}
._82{width:44.241710pt;}
._12{width:45.899223pt;}
._37{width:47.785012pt;}
._38{width:49.056529pt;}
._79{width:52.280557pt;}
._6f{width:53.373344pt;}
._78{width:56.763051pt;}
._67{width:61.784851pt;}
._77{width:65.275774pt;}
._6e{width:66.932254pt;}
._7f{width:68.364208pt;}
._76{width:70.677954pt;}
._71{width:71.770157pt;}
._70{width:76.160662pt;}
._7a{width:80.282880pt;}
._72{width:86.217352pt;}
._75{width:88.967078pt;}
._7b{width:91.168311pt;}
._6d{width:94.089553pt;}
._7c{width:96.123051pt;}
._7d{width:98.308042pt;}
._6c{width:100.800148pt;}
._7e{width:111.114457pt;}
._74{width:115.898767pt;}
._73{width:122.302246pt;}
._80{width:1054.502667pt;}
.fs13{font-size:19.285333pt;}
.fs11{font-size:20.037333pt;}
.fsb{font-size:27.738667pt;}
.fse{font-size:29.120000pt;}
.fs5{font-size:30.832000pt;}
.fs12{font-size:33.066667pt;}
.fs14{font-size:33.637333pt;}
.fs10{font-size:34.346667pt;}
.fs3{font-size:41.733333pt;}
.fs9{font-size:42.512000pt;}
.fs2{font-size:46.720000pt;}
.fsa{font-size:47.557333pt;}
.fs7{font-size:49.349333pt;}
.fsf{font-size:49.920000pt;}
.fs1{font-size:51.701333pt;}
.fs6{font-size:52.853333pt;}
.fs8{font-size:54.720000pt;}
.fsd{font-size:59.930667pt;}
.fsc{font-size:71.333333pt;}
.fs4{font-size:79.280000pt;}
.fs0{font-size:124.586667pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:1.600531pt;}
.y144{bottom:1.760531pt;}
.y173{bottom:2.400665pt;}
.y165{bottom:2.560665pt;}
.y84{bottom:2.720531pt;}
.y89{bottom:3.040531pt;}
.yfe{bottom:3.840665pt;}
.y133{bottom:104.694533pt;}
.ya7{bottom:111.894400pt;}
.y110{bottom:113.014533pt;}
.yc8{bottom:118.934533pt;}
.y66{bottom:118.934667pt;}
.y1bf{bottom:125.334533pt;}
.ya6{bottom:126.134400pt;}
.y10f{bottom:127.254533pt;}
.y65{bottom:130.828000pt;}
.y132{bottom:133.174533pt;}
.yc7{bottom:133.814533pt;}
.y1be{bottom:137.014533pt;}
.y17d{bottom:137.654533pt;}
.ya5{bottom:140.214400pt;}
.y10e{bottom:141.334533pt;}
.y64{bottom:142.721333pt;}
.y131{bottom:147.254533pt;}
.y1bd{bottom:148.694533pt;}
.yc6{bottom:148.854533pt;}
.y17c{bottom:151.734533pt;}
.ya4{bottom:154.454400pt;}
.y63{bottom:154.614667pt;}
.y10d{bottom:155.574533pt;}
.y1bc{bottom:160.374533pt;}
.y130{bottom:161.494533pt;}
.yc5{bottom:163.734533pt;}
.y17b{bottom:165.974533pt;}
.y10c{bottom:169.654533pt;}
.y1bb{bottom:172.054533pt;}
.ya3{bottom:172.694400pt;}
.y12f{bottom:175.574533pt;}
.y17a{bottom:180.214533pt;}
.y1ba{bottom:183.734533pt;}
.y10b{bottom:183.894533pt;}
.y12e{bottom:189.814533pt;}
.yc4{bottom:191.894533pt;}
.y5f{bottom:193.654533pt;}
.y179{bottom:194.294533pt;}
.y1b9{bottom:195.414533pt;}
.y10a{bottom:197.974533pt;}
.y32{bottom:198.454400pt;}
.y62{bottom:198.454533pt;}
.ya2{bottom:199.094400pt;}
.y5e{bottom:203.094533pt;}
.yc3{bottom:203.734533pt;}
.y60{bottom:206.134533pt;}
.y1b8{bottom:207.094533pt;}
.y178{bottom:208.534533pt;}
.y12d{bottom:211.734533pt;}
.y31{bottom:212.694400pt;}
.ya1{bottom:213.334400pt;}
.yc2{bottom:215.574533pt;}
.y109{bottom:216.374533pt;}
.y1b7{bottom:218.774533pt;}
.y61{bottom:219.574533pt;}
.y177{bottom:222.614533pt;}
.y12c{bottom:225.974533pt;}
.y30{bottom:226.934400pt;}
.ya0{bottom:227.414400pt;}
.y1b6{bottom:230.454533pt;}
.y5d{bottom:238.454533pt;}
.y12b{bottom:240.054533pt;}
.y2f{bottom:241.014400pt;}
.y9f{bottom:241.654400pt;}
.y1b5{bottom:242.134533pt;}
.y108{bottom:242.774533pt;}
.y176{bottom:248.374533pt;}
.y5c{bottom:252.534533pt;}
.y1b4{bottom:253.814533pt;}
.y12a{bottom:254.294533pt;}
.y2e{bottom:255.254400pt;}
.y9e{bottom:255.894400pt;}
.y107{bottom:256.854533pt;}
.y175{bottom:261.014533pt;}
.y1b3{bottom:265.494533pt;}
.y5b{bottom:266.774533pt;}
.y129{bottom:268.374533pt;}
.y2d{bottom:269.334400pt;}
.y9d{bottom:269.974400pt;}
.y174{bottom:273.494533pt;}
.y1b2{bottom:277.174533pt;}
.y102{bottom:278.454533pt;}
.y5a{bottom:281.014533pt;}
.y128{bottom:282.614533pt;}
.y172{bottom:283.573867pt;}
.y2c{bottom:283.574400pt;}
.y9c{bottom:284.214400pt;}
.y104{bottom:284.854533pt;}
.y101{bottom:285.814533pt;}
.y106{bottom:288.054533pt;}
.y1b1{bottom:288.854533pt;}
.y103{bottom:291.254533pt;}
.y105{bottom:294.454533pt;}
.y59{bottom:295.254533pt;}
.y2b{bottom:297.654400pt;}
.y9b{bottom:298.294400pt;}
.y171{bottom:298.614533pt;}
.y1b0{bottom:300.534533pt;}
.y127{bottom:304.534533pt;}
.y58{bottom:309.334533pt;}
.y170{bottom:311.254533pt;}
.y2a{bottom:311.894400pt;}
.y1af{bottom:312.214533pt;}
.y9a{bottom:312.534400pt;}
.y100{bottom:316.854533pt;}
.y126{bottom:318.774533pt;}
.y57{bottom:323.574533pt;}
.y16f{bottom:323.894533pt;}
.y29{bottom:326.134400pt;}
.yff{bottom:331.094533pt;}
.y125{bottom:332.854533pt;}
.y16e{bottom:333.973867pt;}
.y99{bottom:334.454400pt;}
.y1ae{bottom:335.574533pt;}
.y16d{bottom:336.534533pt;}
.y56{bottom:337.814533pt;}
.y28{bottom:340.214400pt;}
.y124{bottom:347.094533pt;}
.y1ad{bottom:347.254533pt;}
.y16a{bottom:348.374533pt;}
.y98{bottom:348.694400pt;}
.y55{bottom:351.894533pt;}
.yfa{bottom:354.134533pt;}
.y27{bottom:354.454400pt;}
.yf8{bottom:357.174533pt;}
.y16c{bottom:357.813867pt;}
.y1ac{bottom:358.934533pt;}
.y169{bottom:360.374533pt;}
.y123{bottom:361.334533pt;}
.y97{bottom:362.774400pt;}
.y26{bottom:368.534400pt;}
.y16b{bottom:369.813867pt;}
.y54{bottom:370.294533pt;}
.y1ab{bottom:370.614533pt;}
.y168{bottom:372.374533pt;}
.y122{bottom:375.414533pt;}
.yfc{bottom:375.734533pt;}
.y96{bottom:377.014400pt;}
.yfd{bottom:380.533867pt;}
.y164{bottom:382.293867pt;}
.y1aa{bottom:382.294533pt;}
.y25{bottom:382.774400pt;}
.yfb{bottom:384.054533pt;}
.y166{bottom:384.854533pt;}
.yf9{bottom:387.094533pt;}
.y121{bottom:389.654533pt;}
.y95{bottom:391.094400pt;}
.y1a9{bottom:393.974533pt;}
.y167{bottom:394.133867pt;}
.y52{bottom:394.134400pt;}
.y53{bottom:394.134533pt;}
.y161{bottom:396.694533pt;}
.y24{bottom:396.854400pt;}
.y163{bottom:397.334533pt;}
.y120{bottom:403.734533pt;}
.y94{bottom:405.334400pt;}
.y1a8{bottom:405.654533pt;}
.y162{bottom:409.334533pt;}
.y23{bottom:411.094400pt;}
.yf7{bottom:411.574400pt;}
.y1a7{bottom:417.334533pt;}
.y11f{bottom:417.974533pt;}
.y93{bottom:419.574400pt;}
.y51{bottom:421.814400pt;}
.yf6{bottom:425.654400pt;}
.y1a6{bottom:429.014533pt;}
.y160{bottom:429.494533pt;}
.y11e{bottom:432.054533pt;}
.y22{bottom:433.174400pt;}
.y92{bottom:433.654400pt;}
.y50{bottom:436.054400pt;}
.yf5{bottom:439.894400pt;}
.y15f{bottom:440.214533pt;}
.y1a5{bottom:440.694533pt;}
.y11d{bottom:446.294533pt;}
.y21{bottom:447.414400pt;}
.y91{bottom:447.894400pt;}
.y4f{bottom:450.134400pt;}
.y1a4{bottom:452.374400pt;}
.yf4{bottom:454.134400pt;}
.y15e{bottom:459.574267pt;}
.y11c{bottom:460.534533pt;}
.y20{bottom:461.494400pt;}
.y90{bottom:461.974400pt;}
.y1a3{bottom:464.054400pt;}
.y4e{bottom:464.374400pt;}
.yf3{bottom:468.214400pt;}
.y15d{bottom:473.654267pt;}
.y11b{bottom:474.774533pt;}
.y1f{bottom:475.734400pt;}
.y8f{bottom:476.214400pt;}
.y4d{bottom:478.454400pt;}
.yf2{bottom:482.454400pt;}
.y1a2{bottom:487.414400pt;}
.y15c{bottom:487.894267pt;}
.ycc{bottom:487.894400pt;}
.y1e{bottom:489.974400pt;}
.y8e{bottom:490.294400pt;}
.yce{bottom:490.774400pt;}
.y4c{bottom:492.694400pt;}
.yc9{bottom:494.614400pt;}
.yf1{bottom:496.534400pt;}
.y1a1{bottom:499.094400pt;}
.y11a{bottom:501.334400pt;}
.y15b{bottom:501.974267pt;}
.y1d{bottom:504.054400pt;}
.y8d{bottom:504.534400pt;}
.yca{bottom:504.854400pt;}
.ycf{bottom:506.614400pt;}
.y4b{bottom:506.934400pt;}
.y1a0{bottom:510.774400pt;}
.yf0{bottom:510.934400pt;}
.y119{bottom:513.334400pt;}
.ycb{bottom:515.094400pt;}
.y15a{bottom:516.214267pt;}
.y1c{bottom:518.294400pt;}
.y8c{bottom:518.774400pt;}
.y4a{bottom:521.014400pt;}
.ycd{bottom:521.814400pt;}
.y19f{bottom:522.454400pt;}
.yd0{bottom:522.614400pt;}
.yef{bottom:525.014400pt;}
.y118{bottom:525.174400pt;}
.y159{bottom:530.454267pt;}
.y1b{bottom:532.374400pt;}
.y8b{bottom:532.854400pt;}
.y19e{bottom:534.134400pt;}
.y49{bottom:535.254400pt;}
.yee{bottom:539.254400pt;}
.y158{bottom:544.534267pt;}
.y19d{bottom:545.814400pt;}
.y1a{bottom:546.614400pt;}
.y8a{bottom:547.094400pt;}
.y48{bottom:549.334400pt;}
.yed{bottom:553.494400pt;}
.y19c{bottom:557.494400pt;}
.y157{bottom:558.774267pt;}
.y88{bottom:560.373867pt;}
.y19{bottom:560.694400pt;}
.y148{bottom:562.133867pt;}
.y47{bottom:563.574400pt;}
.y87{bottom:564.374400pt;}
.y149{bottom:564.853867pt;}
.yec{bottom:567.574400pt;}
.y19b{bottom:569.174400pt;}
.y156{bottom:572.854267pt;}
.y18{bottom:574.934400pt;}
.y46{bottom:577.654400pt;}
.y86{bottom:579.094400pt;}
.y19a{bottom:580.854400pt;}
.yeb{bottom:581.814400pt;}
.y145{bottom:582.613867pt;}
.y155{bottom:587.094267pt;}
.yc1{bottom:588.854400pt;}
.y199{bottom:592.534400pt;}
.y85{bottom:593.334400pt;}
.y17{bottom:594.454400pt;}
.yea{bottom:595.894400pt;}
.y13d{bottom:598.934400pt;}
.y45{bottom:599.734400pt;}
.y13f{bottom:600.854400pt;}
.y154{bottom:601.174267pt;}
.yc0{bottom:603.734400pt;}
.y13b{bottom:604.214400pt;}
.y142{bottom:605.174400pt;}
.y143{bottom:605.973867pt;}
.y140{bottom:607.254400pt;}
.y13c{bottom:607.414400pt;}
.ye9{bottom:610.134400pt;}
.y13e{bottom:612.694400pt;}
.y141{bottom:613.174400pt;}
.y44{bottom:613.814400pt;}
.y81{bottom:613.974400pt;}
.y153{bottom:615.414267pt;}
.y7d{bottom:615.414400pt;}
.y198{bottom:615.894400pt;}
.ybf{bottom:618.614400pt;}
.y80{bottom:620.054400pt;}
.y7c{bottom:625.174400pt;}
.y16{bottom:626.774267pt;}
.y197{bottom:627.574400pt;}
.y43{bottom:628.214400pt;}
.ye8{bottom:628.534400pt;}
.y152{bottom:629.814267pt;}
.y82{bottom:631.894400pt;}
.y7f{bottom:632.854400pt;}
.ybe{bottom:633.654400pt;}
.y196{bottom:639.254400pt;}
.y15{bottom:640.214267pt;}
.y42{bottom:642.294400pt;}
.y151{bottom:643.894267pt;}
.ybd{bottom:648.374400pt;}
.y83{bottom:651.573867pt;}
.ye6{bottom:652.374267pt;}
.ye7{bottom:652.374400pt;}
.y14{bottom:653.494267pt;}
.y7e{bottom:654.294400pt;}
.y136{bottom:656.374400pt;}
.y41{bottom:656.534400pt;}
.y194{bottom:657.014267pt;}
.y195{bottom:657.014400pt;}
.y150{bottom:658.134267pt;}
.y138{bottom:658.454400pt;}
.y134{bottom:661.814400pt;}
.y13a{bottom:662.934400pt;}
.ybc{bottom:663.414400pt;}
.y147{bottom:664.373867pt;}
.y137{bottom:665.014400pt;}
.y135{bottom:665.174400pt;}
.y146{bottom:665.814400pt;}
.y13{bottom:667.094267pt;}
.y40{bottom:670.774400pt;}
.y117{bottom:670.934400pt;}
.y139{bottom:671.254400pt;}
.y14f{bottom:672.214267pt;}
.y7b{bottom:677.654267pt;}
.ybb{bottom:678.294400pt;}
.y193{bottom:679.574267pt;}
.ye5{bottom:680.054267pt;}
.y12{bottom:680.534267pt;}
.y3f{bottom:684.854400pt;}
.y14e{bottom:686.454267pt;}
.y7a{bottom:691.894267pt;}
.yba{bottom:693.334400pt;}
.y192{bottom:693.814267pt;}
.y11{bottom:693.974267pt;}
.ye4{bottom:694.294267pt;}
.y3e{bottom:699.094400pt;}
.y79{bottom:705.974267pt;}
.y10{bottom:707.254267pt;}
.y191{bottom:707.894267pt;}
.yb9{bottom:708.214400pt;}
.ye3{bottom:708.374267pt;}
.y3d{bottom:713.174400pt;}
.y78{bottom:720.214267pt;}
.yf{bottom:720.854267pt;}
.y190{bottom:722.134267pt;}
.ye2{bottom:722.614267pt;}
.yb8{bottom:723.094400pt;}
.y3c{bottom:727.414400pt;}
.ye{bottom:734.294267pt;}
.y77{bottom:734.454267pt;}
.y18f{bottom:736.214267pt;}
.ye1{bottom:736.694267pt;}
.yb7{bottom:738.934400pt;}
.y3b{bottom:741.494400pt;}
.yd{bottom:747.574267pt;}
.y76{bottom:748.534267pt;}
.y18e{bottom:750.454267pt;}
.ye0{bottom:750.934267pt;}
.yb6{bottom:753.814400pt;}
.y3a{bottom:755.734400pt;}
.yc{bottom:761.014267pt;}
.y75{bottom:762.774267pt;}
.y18d{bottom:764.534267pt;}
.ydf{bottom:765.014267pt;}
.yb5{bottom:768.854400pt;}
.y39{bottom:769.974400pt;}
.yb{bottom:774.614267pt;}
.y74{bottom:776.854267pt;}
.y18c{bottom:778.774267pt;}
.yde{bottom:779.254267pt;}
.yb4{bottom:783.734400pt;}
.y38{bottom:784.054400pt;}
.ya{bottom:787.894267pt;}
.y73{bottom:791.094267pt;}
.y18b{bottom:793.014267pt;}
.ydd{bottom:793.494267pt;}
.y37{bottom:798.294400pt;}
.yb3{bottom:798.774400pt;}
.y9{bottom:801.334267pt;}
.y72{bottom:805.334267pt;}
.y18a{bottom:807.094267pt;}
.ydc{bottom:807.574267pt;}
.y36{bottom:812.374400pt;}
.yb2{bottom:813.494400pt;}
.y8{bottom:814.774267pt;}
.y71{bottom:819.414267pt;}
.y189{bottom:821.334267pt;}
.ydb{bottom:821.814267pt;}
.y35{bottom:826.614400pt;}
.y7{bottom:828.374267pt;}
.yb1{bottom:828.534400pt;}
.y70{bottom:833.654267pt;}
.y188{bottom:835.414267pt;}
.yda{bottom:835.894267pt;}
.y34{bottom:840.694400pt;}
.y14d{bottom:841.174267pt;}
.y6{bottom:841.654267pt;}
.yb0{bottom:843.414400pt;}
.y6f{bottom:847.734267pt;}
.y187{bottom:849.654267pt;}
.yd9{bottom:850.134267pt;}
.y33{bottom:854.934400pt;}
.y5{bottom:855.094267pt;}
.y14c{bottom:856.214267pt;}
.yaf{bottom:858.294400pt;}
.y6e{bottom:861.974267pt;}
.y186{bottom:863.734267pt;}
.yd8{bottom:864.374267pt;}
.yae{bottom:873.334400pt;}
.y6d{bottom:876.054267pt;}
.y185{bottom:877.974267pt;}
.yd7{bottom:878.614267pt;}
.y14b{bottom:883.894267pt;}
.y4{bottom:884.374267pt;}
.yad{bottom:888.214400pt;}
.y184{bottom:892.214267pt;}
.yd6{bottom:892.854267pt;}
.y6c{bottom:898.134267pt;}
.y116{bottom:898.134533pt;}
.y3{bottom:899.254267pt;}
.yac{bottom:903.094400pt;}
.y183{bottom:906.294267pt;}
.yd5{bottom:907.894267pt;}
.y6b{bottom:912.214267pt;}
.y115{bottom:912.214533pt;}
.y182{bottom:920.534267pt;}
.yd4{bottom:922.774267pt;}
.y6a{bottom:926.454267pt;}
.yab{bottom:926.454400pt;}
.y114{bottom:926.454533pt;}
.y2{bottom:928.374267pt;}
.y181{bottom:934.614267pt;}
.yd3{bottom:937.814267pt;}
.y69{bottom:940.534267pt;}
.yaa{bottom:940.534400pt;}
.y113{bottom:940.534533pt;}
.y180{bottom:948.854267pt;}
.yd2{bottom:953.654267pt;}
.y68{bottom:954.774267pt;}
.ya9{bottom:954.774400pt;}
.y112{bottom:954.774533pt;}
.y1{bottom:954.934267pt;}
.y17f{bottom:968.534267pt;}
.y17e{bottom:968.534533pt;}
.yd1{bottom:968.694267pt;}
.y67{bottom:969.014267pt;}
.ya8{bottom:969.014400pt;}
.y111{bottom:969.014533pt;}
.h30{height:10.880000pt;}
.h2f{height:11.040000pt;}
.h34{height:11.680000pt;}
.h33{height:11.840000pt;}
.h2d{height:13.399917pt;}
.h28{height:13.922424pt;}
.h11{height:14.560000pt;}
.h12{height:15.520000pt;}
.h1b{height:19.259953pt;}
.h19{height:19.273497pt;}
.h1e{height:19.360000pt;}
.h21{height:20.219062pt;}
.h7{height:20.749936pt;}
.hb{height:21.407766pt;}
.h9{height:21.422820pt;}
.h22{height:21.861250pt;}
.h2b{height:22.253867pt;}
.h2e{height:22.959375pt;}
.h2c{height:22.975521pt;}
.h26{height:23.115307pt;}
.h31{height:23.372034pt;}
.h29{height:23.848125pt;}
.h27{height:23.864896pt;}
.h32{height:28.284115pt;}
.h15{height:28.610576pt;}
.h4{height:28.997331pt;}
.h35{height:28.997864pt;}
.h17{height:29.517609pt;}
.h16{height:29.538367pt;}
.h2a{height:30.628646pt;}
.h3{height:31.663750pt;}
.h25{height:31.814271pt;}
.h1c{height:32.006085pt;}
.h1a{height:33.020766pt;}
.h18{height:33.043987pt;}
.hf{height:33.212101pt;}
.he{height:34.265016pt;}
.hd{height:34.289112pt;}
.h23{height:34.661250pt;}
.h24{height:34.685625pt;}
.h8{height:35.570293pt;}
.h5{height:35.898094pt;}
.h2{height:35.923339pt;}
.h13{height:36.826560pt;}
.h14{height:39.377570pt;}
.h1d{height:44.050909pt;}
.h10{height:45.710784pt;}
.h20{height:55.511951pt;}
.h1f{height:66.073893pt;}
.hc{height:67.417969pt;}
.ha{height:67.443776pt;}
.h6{height:73.434648pt;}
.h1{height:86.565833pt;}
.h0{height:1056.000000pt;}
.w10{width:0.960000pt;}
.w16{width:1.440000pt;}
.w17{width:1.600000pt;}
.w5{width:2.560000pt;}
.w1a{width:2.880000pt;}
.w13{width:3.520000pt;}
.wa{width:4.800000pt;}
.w1c{width:5.440000pt;}
.w2{width:6.720000pt;}
.w8{width:7.680000pt;}
.w1{width:8.800000pt;}
.w3{width:9.760000pt;}
.w1f{width:10.560000pt;}
.w1e{width:10.560640pt;}
.wd{width:11.520000pt;}
.wc{width:12.160000pt;}
.w4{width:12.480000pt;}
.w1d{width:12.960000pt;}
.w1b{width:15.680000pt;}
.w18{width:17.280000pt;}
.w7{width:18.080000pt;}
.w20{width:18.240000pt;}
.w21{width:23.360000pt;}
.w19{width:29.120000pt;}
.w9{width:30.240000pt;}
.wf{width:31.040000pt;}
.w15{width:32.480000pt;}
.w14{width:33.280000pt;}
.w11{width:34.080000pt;}
.we{width:34.240000pt;}
.wb{width:35.200000pt;}
.w12{width:35.680000pt;}
.w6{width:36.160000pt;}
.w0{width:816.000000pt;}
.x84{left:-1.920134pt;}
.x0{left:0.000000pt;}
.x6b{left:12.959865pt;}
.x1b{left:70.692000pt;}
.x4{left:77.578400pt;}
.x80{left:82.212667pt;}
.x3b{left:84.132728pt;}
.x7a{left:85.572667pt;}
.x1a{left:89.412000pt;}
.x88{left:90.692667pt;}
.x7{left:96.132933pt;}
.x99{left:106.692693pt;}
.x1{left:113.412667pt;}
.x75{left:115.171903pt;}
.x3c{left:122.692667pt;}
.x89{left:125.412667pt;}
.x29{left:128.620399pt;}
.x9a{left:131.492693pt;}
.x81{left:143.812667pt;}
.x2{left:145.733333pt;}
.x2e{left:146.861448pt;}
.x3d{left:150.053333pt;}
.x76{left:155.493333pt;}
.x8a{left:162.053333pt;}
.x23{left:163.499459pt;}
.x7f{left:164.453333pt;}
.x78{left:165.566739pt;}
.x9b{left:167.172693pt;}
.x22{left:173.578741pt;}
.x9c{left:177.733333pt;}
.x28{left:179.337950pt;}
.x21{left:180.778419pt;}
.x7b{left:184.133200pt;}
.x51{left:187.173333pt;}
.x8b{left:189.573333pt;}
.x5{left:190.693200pt;}
.x7c{left:191.653200pt;}
.x48{left:192.612539pt;}
.x45{left:193.733200pt;}
.x20{left:194.857966pt;}
.x4c{left:195.973200pt;}
.x27{left:198.856898pt;}
.x8c{left:201.253200pt;}
.x9d{left:212.293333pt;}
.x49{left:215.811945pt;}
.x2d{left:216.938043pt;}
.x4f{left:218.213181pt;}
.x6{left:222.217200pt;}
.x8d{left:224.933333pt;}
.x3{left:231.332610pt;}
.x1f{left:234.696715pt;}
.x8e{left:237.253200pt;}
.x1e{left:245.736754pt;}
.x31{left:249.893333pt;}
.x26{left:251.334726pt;}
.x9e{left:252.293333pt;}
.x1d{left:254.216996pt;}
.x7d{left:257.893200pt;}
.x54{left:260.292734pt;}
.x2c{left:264.456182pt;}
.x8f{left:265.893333pt;}
.x4a{left:267.173200pt;}
.x90{left:269.253200pt;}
.x30{left:270.853333pt;}
.x82{left:272.133200pt;}
.x83{left:275.173200pt;}
.x43{left:276.453200pt;}
.x55{left:277.572704pt;}
.x9f{left:280.133333pt;}
.x50{left:281.413333pt;}
.xa0{left:283.493333pt;}
.x53{left:286.373077pt;}
.x3e{left:287.653200pt;}
.x4e{left:289.089297pt;}
.x3f{left:296.133200pt;}
.x52{left:299.493200pt;}
.x91{left:300.933333pt;}
.x2b{left:302.854462pt;}
.x92{left:304.453200pt;}
.xa1{left:307.813333pt;}
.x79{left:308.773200pt;}
.x47{left:310.207274pt;}
.x32{left:312.613333pt;}
.x85{left:313.733200pt;}
.x44{left:317.094203pt;}
.x4b{left:319.335106pt;}
.x2f{left:323.813333pt;}
.xa2{left:326.053333pt;}
.x77{left:329.733200pt;}
.x46{left:332.126114pt;}
.x4d{left:334.527351pt;}
.x25{left:335.490869pt;}
.x24{left:338.371806pt;}
.x93{left:339.817200pt;}
.x40{left:341.413200pt;}
.x2a{left:342.370738pt;}
.x1c{left:344.933200pt;}
.x41{left:353.093200pt;}
.xa3{left:365.093333pt;}
.x94{left:370.693333pt;}
.x86{left:373.253333pt;}
.x96{left:375.173333pt;}
.x87{left:379.973200pt;}
.x97{left:382.853200pt;}
.x95{left:387.013333pt;}
.x7e{left:388.453200pt;}
.xa4{left:390.213333pt;}
.x42{left:396.293200pt;}
.x98{left:401.413333pt;}
.x8{left:416.614777pt;}
.x33{left:419.333200pt;}
.x57{left:420.613200pt;}
.x58{left:425.090332pt;}
.x35{left:428.130837pt;}
.x34{left:430.211130pt;}
.x9{left:435.167639pt;}
.x14{left:439.815027pt;}
.x67{left:441.573200pt;}
.x19{left:443.494394pt;}
.x66{left:447.813200pt;}
.x59{left:450.690859pt;}
.x63{left:453.091875pt;}
.x61{left:459.332753pt;}
.x72{left:474.373333pt;}
.x62{left:475.652589pt;}
.x65{left:477.892802pt;}
.x64{left:480.772695pt;}
.x60{left:485.093200pt;}
.xa{left:490.686308pt;}
.x68{left:499.173333pt;}
.x69{left:501.733333pt;}
.xd{left:515.813067pt;}
.x15{left:516.773067pt;}
.xe{left:518.693067pt;}
.x16{left:523.493032pt;}
.x10{left:525.253067pt;}
.xb{left:528.453067pt;}
.xa5{left:529.565784pt;}
.x11{left:532.132936pt;}
.x5f{left:535.013067pt;}
.x6a{left:537.893333pt;}
.x5e{left:540.933067pt;}
.x17{left:544.292545pt;}
.x5c{left:545.893799pt;}
.x18{left:551.012511pt;}
.x5b{left:552.453861pt;}
.x12{left:554.372918pt;}
.x6c{left:555.813333pt;}
.x13{left:561.092883pt;}
.x6d{left:563.333333pt;}
.xa6{left:567.973067pt;}
.x56{left:587.013067pt;}
.x5d{left:589.093197pt;}
.x6e{left:593.573333pt;}
.x5a{left:595.973067pt;}
.x6f{left:601.733333pt;}
.xa7{left:611.333067pt;}
.x71{left:624.933333pt;}
.x70{left:636.933333pt;}
.x3a{left:645.891487pt;}
.xf{left:654.853067pt;}
.x38{left:656.611457pt;}
.x37{left:664.771375pt;}
.xc{left:669.733067pt;}
.x73{left:696.773333pt;}
.x74{left:708.933333pt;}
.x39{left:711.173496pt;}
.x36{left:722.693067pt;}
}

