
    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_dc4c264e0d273cb8d23d1468.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f4d18cb707103c0b49883b94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd250410defa3077f297e8e4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d7221469f3e79af024108021.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bf97f14f6d5a3d678e27ae41.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_4038d6dd237d520ffabf7724.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.230762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230762,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230955,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231630,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);}
.m1{transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256132,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.259967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259967,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282020,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284301,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.327878px;}
.v8{vertical-align:-13.680000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v9{vertical-align:13.680000px;}
.v6{vertical-align:15.571174px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:26.856725px;}
.ls1c{letter-spacing:-1.488000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-0.936000px;}
.ls3b{letter-spacing:-0.894000px;}
.ls7{letter-spacing:-0.852000px;}
.ls4a{letter-spacing:-0.798000px;}
.lsc{letter-spacing:-0.768000px;}
.ls45{letter-spacing:-0.762000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls4f{letter-spacing:-0.702000px;}
.ls52{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.590400px;}
.ls5{letter-spacing:-0.587400px;}
.lse{letter-spacing:-0.472200px;}
.ls31{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.417600px;}
.ls1d{letter-spacing:-0.366000px;}
.ls14{letter-spacing:-0.292200px;}
.ls4d{letter-spacing:-0.250800px;}
.ls42{letter-spacing:-0.238800px;}
.ls51{letter-spacing:-0.227400px;}
.ls27{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.175800px;}
.ls3a{letter-spacing:-0.164400px;}
.lsa{letter-spacing:-0.135600px;}
.lsb{letter-spacing:-0.132600px;}
.ls43{letter-spacing:-0.115200px;}
.ls18{letter-spacing:-0.078000px;}
.ls15{letter-spacing:-0.048960px;}
.ls12{letter-spacing:-0.040320px;}
.ls39{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.005760px;}
.ls2e{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.045120px;}
.ls1e{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.069120px;}
.ls44{letter-spacing:0.075000px;}
.ls23{letter-spacing:0.089400px;}
.ls4c{letter-spacing:0.115200px;}
.ls4e{letter-spacing:0.118200px;}
.ls30{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.132600px;}
.ls28{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.141000px;}
.ls2c{letter-spacing:0.141120px;}
.ls3d{letter-spacing:0.142560px;}
.ls11{letter-spacing:0.149760px;}
.ls32{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.178800px;}
.ls34{letter-spacing:0.198720px;}
.ls22{letter-spacing:0.209280px;}
.ls20{letter-spacing:0.228960px;}
.ls3c{letter-spacing:0.233400px;}
.ls6{letter-spacing:0.247800px;}
.ls2b{letter-spacing:0.249120px;}
.ls9{letter-spacing:0.256200px;}
.ls50{letter-spacing:0.256320px;}
.ls48{letter-spacing:0.270720px;}
.ls25{letter-spacing:0.312480px;}
.ls10{letter-spacing:0.351360px;}
.ls19{letter-spacing:0.354000px;}
.ls21{letter-spacing:0.354240px;}
.ls16{letter-spacing:0.427680px;}
.ls4b{letter-spacing:0.427800px;}
.ls26{letter-spacing:2.977610px;}
.ls38{letter-spacing:2.986310px;}
.ls49{letter-spacing:3.227760px;}
.ls47{letter-spacing:3.947760px;}
.ls33{letter-spacing:4.469760px;}
.ls36{letter-spacing:5.909760px;}
.ls37{letter-spacing:6.629760px;}
.ls2d{letter-spacing:9.509760px;}
.ls46{letter-spacing:11.355840px;}
.ls35{letter-spacing:13.109760px;}
.ls1f{letter-spacing:21.029760px;}
.ls3f{letter-spacing:62.766980px;}
.ls40{letter-spacing:65.456787px;}
.ls41{letter-spacing:67.401048px;}
.ls29{letter-spacing:69.623794px;}
.ls3e{letter-spacing:230.597138px;}
.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;}
}
.ws20{word-spacing:-66.240000px;}
.ws8{word-spacing:-16.560000px;}
.ws32{word-spacing:-16.056000px;}
.ws1b{word-spacing:-15.759120px;}
.ws1a{word-spacing:-15.621120px;}
.ws6{word-spacing:-15.226440px;}
.ws0{word-spacing:-15.149040px;}
.ws1f{word-spacing:-15.128640px;}
.ws12{word-spacing:-15.111240px;}
.ws4{word-spacing:-15.102840px;}
.ws1d{word-spacing:-15.099840px;}
.ws30{word-spacing:-15.088440px;}
.ws2e{word-spacing:-15.085440px;}
.ws14{word-spacing:-15.059640px;}
.ws2a{word-spacing:-15.045240px;}
.ws2{word-spacing:-14.970240px;}
.ws22{word-spacing:-14.944320px;}
.wsc{word-spacing:-14.929920px;}
.wsf{word-spacing:-14.921280px;}
.ws11{word-spacing:-14.892240px;}
.ws2d{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.834640px;}
.ws29{word-spacing:-14.805840px;}
.wsd{word-spacing:-14.794440px;}
.ws5{word-spacing:-14.777040px;}
.ws26{word-spacing:-14.754240px;}
.ws31{word-spacing:-14.742840px;}
.ws28{word-spacing:-14.731440px;}
.ws2f{word-spacing:-14.719440px;}
.ws15{word-spacing:-14.552640px;}
.ws1e{word-spacing:-14.506440px;}
.ws3{word-spacing:-14.382840px;}
.wsa{word-spacing:-14.379840px;}
.ws16{word-spacing:-14.332960px;}
.ws9{word-spacing:-14.202240px;}
.ws2b{word-spacing:-14.172240px;}
.ws10{word-spacing:-14.118240px;}
.ws23{word-spacing:-14.076240px;}
.ws13{word-spacing:-10.440000px;}
.ws2c{word-spacing:-9.865560px;}
.ws1{word-spacing:-9.437760px;}
.wse{word-spacing:-9.145560px;}
.ws17{word-spacing:-5.390715px;}
.ws25{word-spacing:-4.418176px;}
.ws18{word-spacing:-3.702119px;}
.ws1c{word-spacing:-3.533580px;}
.ws24{word-spacing:-1.674338px;}
.ws21{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.ws19{word-spacing:24.408886px;}
.ws27{word-spacing:54.534282px;}
._17{margin-left:-60.647746px;}
._21{margin-left:-9.672720px;}
._a{margin-left:-4.862880px;}
._9{margin-left:-3.189120px;}
._0{margin-left:-1.258560px;}
._3{width:1.111800px;}
._4{width:2.269800px;}
._8{width:3.908160px;}
._7{width:5.462400px;}
._1{width:6.475800px;}
._2{width:7.715280px;}
._c{width:9.273600px;}
._d{width:10.395840px;}
._e{width:11.585280px;}
._11{width:12.983040px;}
._18{width:14.506920px;}
._10{width:16.855680px;}
._f{width:18.216000px;}
._12{width:19.938240px;}
._13{width:21.263040px;}
._14{width:22.587840px;}
._2f{width:23.912640px;}
._15{width:25.366800px;}
._5{width:26.558640px;}
._6{width:28.085040px;}
._1f{width:29.285760px;}
._20{width:30.866760px;}
._23{width:32.172960px;}
._22{width:33.186240px;}
._1b{width:34.307849px;}
._2e{width:35.523391px;}
._2d{width:36.696960px;}
._31{width:39.214080px;}
._30{width:40.534560px;}
._16{width:43.107724px;}
._2b{width:46.978560px;}
._2c{width:48.182302px;}
._1c{width:49.277378px;}
._1a{width:64.311154px;}
._3a{width:65.908800px;}
._2a{width:69.407040px;}
._19{width:72.663252px;}
._25{width:73.791360px;}
._34{width:77.500800px;}
._33{width:78.702240px;}
._36{width:80.017920px;}
._37{width:82.005120px;}
._27{width:90.518400px;}
._28{width:91.874880px;}
._29{width:93.464640px;}
._24{width:102.990720px;}
._39{width:112.939200px;}
._26{width:114.595200px;}
._32{width:120.159360px;}
._38{width:127.512000px;}
._1d{width:244.973458px;}
._35{width:478.252800px;}
._1e{width:814.799520px;}
._b{width:849.185760px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fsd{font-size:47.448217px;}
.fsf{font-size:48.240000px;}
.fs8{font-size:51.296776px;}
.fs6{font-size:56.070450px;}
.fsb{font-size:56.234276px;}
.fse{font-size:59.276394px;}
.fs2{font-size:59.558863px;}
.fs4{font-size:62.747778px;}
.fs3{font-size:63.420178px;}
.fs9{font-size:64.246907px;}
.fsc{font-size:64.973179px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs5{font-size:70.201604px;}
.fsa{font-size:70.406717px;}
.fs10{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:2.392120px;}
.y92{bottom:3.785712px;}
.yfb{bottom:3.960000px;}
.yfd{bottom:4.140000px;}
.ycc{bottom:4.500000px;}
.yb2{bottom:5.580000px;}
.yd0{bottom:5.760000px;}
.y4c{bottom:6.048968px;}
.y5a{bottom:6.878730px;}
.y4a{bottom:6.894522px;}
.y12d{bottom:7.410000px;}
.y106{bottom:7.455000px;}
.yf9{bottom:7.485000px;}
.y108{bottom:7.560000px;}
.y12b{bottom:7.590000px;}
.y102{bottom:7.665000px;}
.y91{bottom:7.678505px;}
.y7e{bottom:7.714092px;}
.y10b{bottom:7.740000px;}
.y50{bottom:8.278320px;}
.y75{bottom:8.302508px;}
.y131{bottom:8.820000px;}
.y59{bottom:14.078536px;}
.y100{bottom:14.220000px;}
.y90{bottom:14.392687px;}
.yb0{bottom:15.120000px;}
.yae{bottom:15.660000px;}
.yb5{bottom:15.705000px;}
.yb7{bottom:15.840000px;}
.y104{bottom:18.180000px;}
.y11b{bottom:19.260000px;}
.y119{bottom:19.800000px;}
.y118{bottom:19.980000px;}
.yeb{bottom:20.160000px;}
.yee{bottom:20.190000px;}
.yef{bottom:20.550000px;}
.yaf{bottom:21.240000px;}
.ycb{bottom:24.480000px;}
.yb1{bottom:25.740000px;}
.y125{bottom:25.920000px;}
.y123{bottom:26.070000px;}
.yc8{bottom:34.560000px;}
.y133{bottom:36.180000px;}
.yca{bottom:44.640000px;}
.yf2{bottom:54.945000px;}
.yf1{bottom:56.385000px;}
.y1{bottom:57.600000px;}
.yab{bottom:57.636000px;}
.yc9{bottom:64.800000px;}
.yc2{bottom:133.596000px;}
.y96{bottom:136.800000px;}
.y79{bottom:137.340000px;}
.y45{bottom:147.960000px;}
.y2e{bottom:150.840000px;}
.y1a{bottom:151.740000px;}
.y22{bottom:152.640000px;}
.y5f{bottom:168.120000px;}
.ydd{bottom:169.200000px;}
.yc1{bottom:173.910000px;}
.y95{bottom:177.120000px;}
.y78{bottom:177.660000px;}
.y44{bottom:188.280000px;}
.y2d{bottom:191.010000px;}
.y19{bottom:192.090000px;}
.y21{bottom:192.990000px;}
.y5e{bottom:208.470000px;}
.ydc{bottom:209.550000px;}
.yc0{bottom:214.230000px;}
.y94{bottom:217.470000px;}
.y77{bottom:218.010000px;}
.yec{bottom:218.385000px;}
.yd7{bottom:218.730000px;}
.ye9{bottom:220.890000px;}
.yf7{bottom:223.950000px;}
.y43{bottom:228.450000px;}
.y2c{bottom:231.330000px;}
.y18{bottom:232.230000px;}
.y20{bottom:233.310000px;}
.y121{bottom:243.210000px;}
.y5d{bottom:248.790000px;}
.ydb{bottom:249.690000px;}
.y8f{bottom:253.365000px;}
.ybf{bottom:254.595000px;}
.y76{bottom:258.330000px;}
.yd6{bottom:259.095000px;}
.y93{bottom:260.850000px;}
.ye8{bottom:261.255000px;}
.yf6{bottom:264.270000px;}
.y42{bottom:268.770000px;}
.ybe{bottom:270.975000px;}
.y2b{bottom:271.650000px;}
.y17{bottom:272.550000px;}
.y1f{bottom:273.630000px;}
.y120{bottom:283.530000px;}
.yda{bottom:285.540000px;}
.y5c{bottom:289.110000px;}
.yd9{bottom:293.070000px;}
.y74{bottom:294.015000px;}
.ye7{bottom:297.075000px;}
.yd5{bottom:299.235000px;}
.y73{bottom:301.530000px;}
.yf5{bottom:304.590000px;}
.y8e{bottom:304.950000px;}
.y41{bottom:309.090000px;}
.y2a{bottom:311.970000px;}
.y16{bottom:312.870000px;}
.y1e{bottom:313.770000px;}
.ybd{bottom:314.175000px;}
.yd4{bottom:315.795000px;}
.y137{bottom:317.190000px;}
.y11f{bottom:323.850000px;}
.y5b{bottom:329.250000px;}
.yd8{bottom:336.090000px;}
.y72{bottom:344.550000px;}
.yf4{bottom:344.910000px;}
.y8d{bottom:345.990000px;}
.ye6{bottom:347.250000px;}
.y40{bottom:349.410000px;}
.y128{bottom:349.950000px;}
.y29{bottom:352.290000px;}
.y15{bottom:353.190000px;}
.y1d{bottom:354.090000px;}
.y136{bottom:357.330000px;}
.ybc{bottom:357.555000px;}
.yd3{bottom:358.995000px;}
.y11e{bottom:364.170000px;}
.y58{bottom:365.115000px;}
.y57{bottom:372.630000px;}
.yf3{bottom:385.230000px;}
.y71{bottom:385.770000px;}
.y8c{bottom:386.310000px;}
.ye5{bottom:387.570000px;}
.y3f{bottom:389.730000px;}
.y28{bottom:392.430000px;}
.y14{bottom:393.510000px;}
.y1c{bottom:394.410000px;}
.y135{bottom:397.650000px;}
.ybb{bottom:400.755000px;}
.yf0{bottom:400.890000px;}
.yd2{bottom:402.195000px;}
.y11d{bottom:404.490000px;}
.y56{bottom:416.730000px;}
.y11c{bottom:420.150000px;}
.y70{bottom:426.090000px;}
.y8b{bottom:426.630000px;}
.ye4{bottom:427.890000px;}
.y3e{bottom:430.095000px;}
.y27{bottom:432.795000px;}
.y7c{bottom:433.695000px;}
.y13{bottom:433.875000px;}
.y1b{bottom:434.775000px;}
.y134{bottom:438.015000px;}
.y12e{bottom:438.195000px;}
.yba{bottom:444.165000px;}
.yd1{bottom:445.605000px;}
.y132{bottom:453.675000px;}
.y55{bottom:457.095000px;}
.y6f{bottom:466.455000px;}
.y8a{bottom:467.895000px;}
.ye3{bottom:468.255000px;}
.y105{bottom:469.980000px;}
.y3d{bottom:471.135000px;}
.y10d{bottom:471.600000px;}
.y26{bottom:473.115000px;}
.y7b{bottom:474.015000px;}
.y12{bottom:475.095000px;}
.yc6{bottom:476.925000px;}
.y116{bottom:480.495000px;}
.yb9{bottom:486.645000px;}
.ycf{bottom:488.805000px;}
.y13b{bottom:491.655000px;}
.y54{bottom:497.415000px;}
.y89{bottom:503.715000px;}
.y6e{bottom:506.775000px;}
.ye2{bottom:509.475000px;}
.y88{bottom:511.275000px;}
.y3c{bottom:511.455000px;}
.ya2{bottom:513.435000px;}
.y25{bottom:514.335000px;}
.y11{bottom:515.235000px;}
.y111{bottom:516.675000px;}
.yc5{bottom:517.245000px;}
.y115{bottom:520.815000px;}
.yb8{bottom:529.125000px;}
.y13a{bottom:531.975000px;}
.yce{bottom:532.185000px;}
.y53{bottom:538.815000px;}
.y6d{bottom:546.915000px;}
.ye1{bottom:550.515000px;}
.y87{bottom:552.495000px;}
.y3b{bottom:552.675000px;}
.ya1{bottom:553.755000px;}
.y60{bottom:554.655000px;}
.y10{bottom:555.555000px;}
.y110{bottom:556.995000px;}
.yc4{bottom:557.565000px;}
.y114{bottom:561.135000px;}
.yb6{bottom:571.605000px;}
.y139{bottom:572.295000px;}
.ycd{bottom:575.385000px;}
.y52{bottom:580.935000px;}
.y126{bottom:582.015000px;}
.y6c{bottom:587.415000px;}
.ye0{bottom:591.015000px;}
.y86{bottom:592.815000px;}
.y3a{bottom:592.995000px;}
.ya0{bottom:593.895000px;}
.y7a{bottom:594.975000px;}
.yf{bottom:595.875000px;}
.y10f{bottom:597.315000px;}
.yc3{bottom:597.705000px;}
.y113{bottom:601.455000px;}
.y138{bottom:607.935000px;}
.yb4{bottom:614.265000px;}
.yc7{bottom:618.810000px;}
.y51{bottom:623.055000px;}
.y6b{bottom:628.455000px;}
.yfe{bottom:629.535000px;}
.yfc{bottom:631.335000px;}
.y11a{bottom:631.695000px;}
.ydf{bottom:632.235000px;}
.y85{bottom:633.135000px;}
.y39{bottom:633.315000px;}
.y9f{bottom:634.215000px;}
.yaa{bottom:635.115000px;}
.ye{bottom:636.195000px;}
.y112{bottom:637.095000px;}
.y10e{bottom:637.635000px;}
.yb3{bottom:656.790000px;}
.yed{bottom:658.335000px;}
.y4f{bottom:659.640000px;}
.y12c{bottom:663.375000px;}
.y12a{bottom:664.815000px;}
.y4e{bottom:667.185000px;}
.y6a{bottom:668.805000px;}
.y84{bottom:673.305000px;}
.y38{bottom:673.665000px;}
.y9e{bottom:674.565000px;}
.ya9{bottom:675.465000px;}
.yd{bottom:676.365000px;}
.y107{bottom:693.825000px;}
.y10a{bottom:699.405000px;}
.yad{bottom:701.610000px;}
.y4b{bottom:705.690000px;}
.y69{bottom:709.125000px;}
.y4d{bottom:711.645000px;}
.y83{bottom:713.625000px;}
.y37{bottom:713.805000px;}
.y9d{bottom:714.885000px;}
.ya8{bottom:715.785000px;}
.yc{bottom:716.685000px;}
.y49{bottom:747.615000px;}
.y68{bottom:750.345000px;}
.y82{bottom:753.945000px;}
.y36{bottom:754.125000px;}
.y48{bottom:755.205000px;}
.ya7{bottom:756.105000px;}
.yb{bottom:757.005000px;}
.yac{bottom:770.910000px;}
.y130{bottom:787.965000px;}
.y67{bottom:790.665000px;}
.y81{bottom:794.265000px;}
.y35{bottom:794.445000px;}
.y9c{bottom:795.345000px;}
.y47{bottom:796.425000px;}
.ya{bottom:797.325000px;}
.y124{bottom:814.965000px;}
.yde{bottom:830.040000px;}
.y66{bottom:830.985000px;}
.y10c{bottom:833.685000px;}
.y109{bottom:834.045000px;}
.yfa{bottom:834.405000px;}
.y80{bottom:834.585000px;}
.y34{bottom:834.765000px;}
.y9b{bottom:835.665000px;}
.ya6{bottom:836.565000px;}
.y46{bottom:836.745000px;}
.y9{bottom:837.645000px;}
.yea{bottom:861.045000px;}
.y117{bottom:863.385000px;}
.y65{bottom:871.125000px;}
.y7f{bottom:874.725000px;}
.y33{bottom:875.085000px;}
.y9a{bottom:875.985000px;}
.ya5{bottom:876.885000px;}
.y8{bottom:877.785000px;}
.y101{bottom:892.620000px;}
.yf8{bottom:892.800000px;}
.y129{bottom:897.840000px;}
.y12f{bottom:898.740000px;}
.y7d{bottom:910.515000px;}
.y64{bottom:911.490000px;}
.y32{bottom:915.450000px;}
.y99{bottom:916.350000px;}
.ya4{bottom:917.250000px;}
.y7{bottom:918.150000px;}
.y63{bottom:947.265000px;}
.y62{bottom:954.870000px;}
.y31{bottom:956.670000px;}
.ya3{bottom:957.570000px;}
.y6{bottom:958.470000px;}
.y23{bottom:995.640000px;}
.y30{bottom:996.990000px;}
.y61{bottom:997.890000px;}
.y5{bottom:998.790000px;}
.y98{bottom:1038.030000px;}
.y2f{bottom:1038.210000px;}
.y4{bottom:1039.110000px;}
.y122{bottom:1045.080000px;}
.y127{bottom:1046.490000px;}
.y103{bottom:1054.050000px;}
.yff{bottom:1057.290000px;}
.y97{bottom:1078.350000px;}
.y3{bottom:1079.250000px;}
.y2{bottom:1119.570000px;}
.h4{height:14.624965px;}
.h8{height:20.324316px;}
.h26{height:21.060000px;}
.h28{height:21.240000px;}
.h6{height:21.449858px;}
.h15{height:22.500233px;}
.h33{height:23.976000px;}
.h2b{height:24.120000px;}
.h32{height:24.156000px;}
.h25{height:24.300000px;}
.ha{height:25.874614px;}
.h13{height:25.950214px;}
.hd{height:26.999768px;}
.h17{height:27.000188px;}
.h29{height:31.320000px;}
.h18{height:32.945002px;}
.h2a{height:35.280000px;}
.h10{height:35.617195px;}
.h5{height:41.353859px;}
.h1d{height:42.480000px;}
.h1e{height:42.516000px;}
.h1f{height:42.660000px;}
.h21{height:42.696000px;}
.h30{height:42.840000px;}
.h31{height:43.020000px;}
.h2f{height:43.200000px;}
.h11{height:44.608937px;}
.hb{height:48.743496px;}
.h14{height:48.885914px;}
.he{height:51.021256px;}
.h9{height:62.410754px;}
.h7{height:63.079542px;}
.hf{height:63.901831px;}
.h16{height:64.624202px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h12{height:68.084282px;}
.hc{height:68.748750px;}
.h27{height:71.613281px;}
.h19{height:74.050093px;}
.h1a{height:74.529189px;}
.h20{height:80.460000px;}
.h23{height:202.710000px;}
.h2e{height:211.530000px;}
.h2c{height:231.510000px;}
.h2d{height:231.690000px;}
.h22{height:233.850000px;}
.h24{height:257.430000px;}
.h34{height:306.930000px;}
.h35{height:334.290000px;}
.h1b{height:892.980000px;}
.h1c{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:13.499490px;}
.w8{width:20.100293px;}
.w6{width:20.175894px;}
.w23{width:38.016000px;}
.w21{width:40.140000px;}
.w24{width:41.220000px;}
.w22{width:41.580000px;}
.w28{width:41.976000px;}
.w9{width:60.674170px;}
.w4{width:60.824877px;}
.w5{width:67.501373px;}
.w25{width:68.580000px;}
.w27{width:68.760000px;}
.w20{width:68.940000px;}
.w14{width:69.696000px;}
.w2c{width:71.820000px;}
.w2d{width:71.856000px;}
.w2b{width:72.000000px;}
.w16{width:78.660000px;}
.w18{width:78.696000px;}
.w26{width:79.776000px;}
.w15{width:82.260000px;}
.w17{width:82.296000px;}
.wf{width:84.996000px;}
.w19{width:91.260000px;}
.w1a{width:91.800000px;}
.wa{width:100.051413px;}
.w10{width:106.200000px;}
.w11{width:106.416000px;}
.w13{width:118.620000px;}
.w12{width:128.016000px;}
.we{width:159.660000px;}
.w7{width:180.007907px;}
.w1b{width:265.890000px;}
.w1d{width:307.875000px;}
.w29{width:315.570000px;}
.w1e{width:318.810000px;}
.w1f{width:319.035000px;}
.w2a{width:322.275000px;}
.w1c{width:372.270000px;}
.w2e{width:551.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wd{width:1262.879981px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:2.265358px;}
.x37{left:5.760000px;}
.x31{left:7.020000px;}
.x64{left:8.100000px;}
.x1a{left:9.346774px;}
.x68{left:10.875000px;}
.x53{left:14.940000px;}
.x36{left:16.020000px;}
.x28{left:21.090000px;}
.x49{left:22.140000px;}
.x4a{left:24.660000px;}
.x2f{left:26.280000px;}
.xd{left:27.450570px;}
.x2a{left:28.980000px;}
.x43{left:30.600000px;}
.x2b{left:32.220000px;}
.x2d{left:34.200000px;}
.x40{left:36.900000px;}
.x26{left:38.160000px;}
.x46{left:39.240000px;}
.x48{left:40.500000px;}
.x23{left:42.480000px;}
.x33{left:43.734000px;}
.x3c{left:44.820000px;}
.x4b{left:46.440000px;}
.xc{left:48.282257px;}
.x34{left:50.580000px;}
.x59{left:52.560000px;}
.x32{left:53.814000px;}
.x38{left:55.440000px;}
.x19{left:61.427585px;}
.x52{left:62.460000px;}
.x21{left:63.894000px;}
.x51{left:66.780000px;}
.xe{left:67.812898px;}
.x55{left:69.885000px;}
.x35{left:79.734000px;}
.x56{left:96.885000px;}
.x4d{left:104.400000px;}
.x1f{left:106.379981px;}
.x57{left:118.980000px;}
.x54{left:122.760000px;}
.x50{left:123.885000px;}
.x20{left:126.396000px;}
.x2{left:127.655987px;}
.x58{left:133.020000px;}
.x72{left:135.216000px;}
.x69{left:136.656000px;}
.x6d{left:150.330000px;}
.x5a{left:153.945000px;}
.x5c{left:157.320000px;}
.x4c{left:158.430000px;}
.x5b{left:162.360000px;}
.x4f{left:166.140000px;}
.x79{left:171.030000px;}
.x5e{left:174.690000px;}
.x1c{left:175.709987px;}
.x8{left:195.149987px;}
.x6{left:199.515000px;}
.x3b{left:206.130000px;}
.x1b{left:227.729987px;}
.x7{left:260.309987px;}
.x22{left:286.050000px;}
.x63{left:314.139000px;}
.x71{left:320.835000px;}
.x3d{left:324.750000px;}
.x77{left:332.355000px;}
.x67{left:337.680000px;}
.x6c{left:340.380000px;}
.x76{left:344.775000px;}
.x17{left:352.140000px;}
.xb{left:355.740000px;}
.x5f{left:363.840000px;}
.x24{left:371.055000px;}
.x5d{left:384.374987px;}
.x1d{left:392.294987px;}
.x3e{left:394.455000px;}
.x18{left:412.814987px;}
.x66{left:419.654987px;}
.x4e{left:424.335000px;}
.x70{left:443.235000px;}
.x65{left:446.475000px;}
.x74{left:451.335000px;}
.x73{left:452.595000px;}
.x6a{left:456.015000px;}
.x9{left:459.990000px;}
.x25{left:477.255000px;}
.xa{left:480.164987px;}
.x13{left:495.240000px;}
.x14{left:515.444987px;}
.x7a{left:525.180000px;}
.xf{left:535.784987px;}
.x3f{left:555.375000px;}
.x27{left:583.455000px;}
.x11{left:597.540000px;}
.x62{left:604.544981px;}
.x39{left:607.064981px;}
.x12{left:617.684987px;}
.x3a{left:631.544981px;}
.x41{left:637.665000px;}
.x3{left:641.265000px;}
.x75{left:653.040000px;}
.x5{left:654.809987px;}
.x15{left:658.890000px;}
.x6b{left:660.060000px;}
.x78{left:677.490000px;}
.x6e{left:682.350000px;}
.x6f{left:683.429987px;}
.x29{left:689.865000px;}
.x7b{left:692.789987px;}
.x42{left:716.325000px;}
.x16{left:719.609987px;}
.x10{left:748.769987px;}
.x1{left:757.229987px;}
.x44{left:794.985000px;}
.x2c{left:796.065000px;}
.x45{left:873.690000px;}
.x2e{left:902.490000px;}
.x47{left:964.950000px;}
.x30{left:1008.690000px;}
.x61{left:1056.749981px;}
.x1e{left:1139.939981px;}
.x60{left:1161.179981px;}
@media print{
.v3{vertical-align:-16.291447pt;}
.v8{vertical-align:-12.160000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v9{vertical-align:12.160000pt;}
.v6{vertical-align:13.841043pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:23.872645pt;}
.ls1c{letter-spacing:-1.322667pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-0.832000pt;}
.ls3b{letter-spacing:-0.794667pt;}
.ls7{letter-spacing:-0.757333pt;}
.ls4a{letter-spacing:-0.709333pt;}
.lsc{letter-spacing:-0.682667pt;}
.ls45{letter-spacing:-0.677333pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls4f{letter-spacing:-0.624000pt;}
.ls52{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.524800pt;}
.ls5{letter-spacing:-0.522133pt;}
.lse{letter-spacing:-0.419733pt;}
.ls31{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.371200pt;}
.ls1d{letter-spacing:-0.325333pt;}
.ls14{letter-spacing:-0.259733pt;}
.ls4d{letter-spacing:-0.222933pt;}
.ls42{letter-spacing:-0.212267pt;}
.ls51{letter-spacing:-0.202133pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.156267pt;}
.ls3a{letter-spacing:-0.146133pt;}
.lsa{letter-spacing:-0.120533pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls43{letter-spacing:-0.102400pt;}
.ls18{letter-spacing:-0.069333pt;}
.ls15{letter-spacing:-0.043520pt;}
.ls12{letter-spacing:-0.035840pt;}
.ls39{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.005120pt;}
.ls2e{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.040107pt;}
.ls1e{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.061440pt;}
.ls44{letter-spacing:0.066667pt;}
.ls23{letter-spacing:0.079467pt;}
.ls4c{letter-spacing:0.102400pt;}
.ls4e{letter-spacing:0.105067pt;}
.ls30{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.117867pt;}
.ls28{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.125333pt;}
.ls2c{letter-spacing:0.125440pt;}
.ls3d{letter-spacing:0.126720pt;}
.ls11{letter-spacing:0.133120pt;}
.ls32{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.158933pt;}
.ls34{letter-spacing:0.176640pt;}
.ls22{letter-spacing:0.186027pt;}
.ls20{letter-spacing:0.203520pt;}
.ls3c{letter-spacing:0.207467pt;}
.ls6{letter-spacing:0.220267pt;}
.ls2b{letter-spacing:0.221440pt;}
.ls9{letter-spacing:0.227733pt;}
.ls50{letter-spacing:0.227840pt;}
.ls48{letter-spacing:0.240640pt;}
.ls25{letter-spacing:0.277760pt;}
.ls10{letter-spacing:0.312320pt;}
.ls19{letter-spacing:0.314667pt;}
.ls21{letter-spacing:0.314880pt;}
.ls16{letter-spacing:0.380160pt;}
.ls4b{letter-spacing:0.380267pt;}
.ls26{letter-spacing:2.646764pt;}
.ls38{letter-spacing:2.654498pt;}
.ls49{letter-spacing:2.869120pt;}
.ls47{letter-spacing:3.509120pt;}
.ls33{letter-spacing:3.973120pt;}
.ls36{letter-spacing:5.253120pt;}
.ls37{letter-spacing:5.893120pt;}
.ls2d{letter-spacing:8.453120pt;}
.ls46{letter-spacing:10.094080pt;}
.ls35{letter-spacing:11.653120pt;}
.ls1f{letter-spacing:18.693120pt;}
.ls3f{letter-spacing:55.792871pt;}
.ls40{letter-spacing:58.183811pt;}
.ls41{letter-spacing:59.912043pt;}
.ls29{letter-spacing:61.887817pt;}
.ls3e{letter-spacing:204.975233pt;}
.ws20{word-spacing:-58.880000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws32{word-spacing:-14.272000pt;}
.ws1b{word-spacing:-14.008107pt;}
.ws1a{word-spacing:-13.885440pt;}
.ws6{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.465813pt;}
.ws1f{word-spacing:-13.447680pt;}
.ws12{word-spacing:-13.432213pt;}
.ws4{word-spacing:-13.424747pt;}
.ws1d{word-spacing:-13.422080pt;}
.ws30{word-spacing:-13.411947pt;}
.ws2e{word-spacing:-13.409280pt;}
.ws14{word-spacing:-13.386347pt;}
.ws2a{word-spacing:-13.373547pt;}
.ws2{word-spacing:-13.306880pt;}
.ws22{word-spacing:-13.283840pt;}
.wsc{word-spacing:-13.271040pt;}
.wsf{word-spacing:-13.263360pt;}
.ws11{word-spacing:-13.237547pt;}
.ws2d{word-spacing:-13.189013pt;}
.ws7{word-spacing:-13.186347pt;}
.ws29{word-spacing:-13.160747pt;}
.wsd{word-spacing:-13.150613pt;}
.ws5{word-spacing:-13.135147pt;}
.ws26{word-spacing:-13.114880pt;}
.ws31{word-spacing:-13.104747pt;}
.ws28{word-spacing:-13.094613pt;}
.ws2f{word-spacing:-13.083947pt;}
.ws15{word-spacing:-12.935680pt;}
.ws1e{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.784747pt;}
.wsa{word-spacing:-12.782080pt;}
.ws16{word-spacing:-12.740409pt;}
.ws9{word-spacing:-12.624213pt;}
.ws2b{word-spacing:-12.597547pt;}
.ws10{word-spacing:-12.549547pt;}
.ws23{word-spacing:-12.512213pt;}
.ws13{word-spacing:-9.280000pt;}
.ws2c{word-spacing:-8.769387pt;}
.ws1{word-spacing:-8.389120pt;}
.wse{word-spacing:-8.129387pt;}
.ws17{word-spacing:-4.791747pt;}
.ws25{word-spacing:-3.927268pt;}
.ws18{word-spacing:-3.290772pt;}
.ws1c{word-spacing:-3.140960pt;}
.ws24{word-spacing:-1.488300pt;}
.ws21{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.ws19{word-spacing:21.696787pt;}
.ws27{word-spacing:48.474918pt;}
._17{margin-left:-53.909108pt;}
._21{margin-left:-8.597973pt;}
._a{margin-left:-4.322560pt;}
._9{margin-left:-2.834773pt;}
._0{margin-left:-1.118720pt;}
._3{width:0.988267pt;}
._4{width:2.017600pt;}
._8{width:3.473920pt;}
._7{width:4.855467pt;}
._1{width:5.756267pt;}
._2{width:6.858027pt;}
._c{width:8.243200pt;}
._d{width:9.240747pt;}
._e{width:10.298027pt;}
._11{width:11.540480pt;}
._18{width:12.895040pt;}
._10{width:14.982827pt;}
._f{width:16.192000pt;}
._12{width:17.722880pt;}
._13{width:18.900480pt;}
._14{width:20.078080pt;}
._2f{width:21.255680pt;}
._15{width:22.548267pt;}
._5{width:23.607680pt;}
._6{width:24.964480pt;}
._1f{width:26.031787pt;}
._20{width:27.437120pt;}
._23{width:28.598187pt;}
._22{width:29.498880pt;}
._1b{width:30.495865pt;}
._2e{width:31.576348pt;}
._2d{width:32.619520pt;}
._31{width:34.856960pt;}
._30{width:36.030720pt;}
._16{width:38.317977pt;}
._2b{width:41.758720pt;}
._2c{width:42.828713pt;}
._1c{width:43.802114pt;}
._1a{width:57.165470pt;}
._3a{width:58.585600pt;}
._2a{width:61.695147pt;}
._19{width:64.589558pt;}
._25{width:65.592320pt;}
._34{width:68.889600pt;}
._33{width:69.957547pt;}
._36{width:71.127040pt;}
._37{width:72.893440pt;}
._27{width:80.460800pt;}
._28{width:81.666560pt;}
._29{width:83.079680pt;}
._24{width:91.547307pt;}
._39{width:100.390400pt;}
._26{width:101.862400pt;}
._32{width:106.808320pt;}
._38{width:113.344000pt;}
._1d{width:217.754185pt;}
._35{width:425.113600pt;}
._1e{width:724.266240pt;}
._b{width:754.831787pt;}
.fs1{font-size:37.120000pt;}
.fsd{font-size:42.176193pt;}
.fsf{font-size:42.880000pt;}
.fs8{font-size:45.597134pt;}
.fs6{font-size:49.840400pt;}
.fsb{font-size:49.986023pt;}
.fse{font-size:52.690128pt;}
.fs2{font-size:52.941212pt;}
.fs4{font-size:55.775803pt;}
.fs3{font-size:56.373491pt;}
.fs9{font-size:57.108362pt;}
.fsc{font-size:57.753937pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs5{font-size:62.401425pt;}
.fsa{font-size:62.583749pt;}
.fs10{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.126329pt;}
.y92{bottom:3.365077pt;}
.yfb{bottom:3.520000pt;}
.yfd{bottom:3.680000pt;}
.ycc{bottom:4.000000pt;}
.yb2{bottom:4.960000pt;}
.yd0{bottom:5.120000pt;}
.y4c{bottom:5.376860pt;}
.y5a{bottom:6.114427pt;}
.y4a{bottom:6.128464pt;}
.y12d{bottom:6.586667pt;}
.y106{bottom:6.626667pt;}
.yf9{bottom:6.653333pt;}
.y108{bottom:6.720000pt;}
.y12b{bottom:6.746667pt;}
.y102{bottom:6.813333pt;}
.y91{bottom:6.825338pt;}
.y7e{bottom:6.856971pt;}
.y10b{bottom:6.880000pt;}
.y50{bottom:7.358507pt;}
.y75{bottom:7.380007pt;}
.y131{bottom:7.840000pt;}
.y59{bottom:12.514254pt;}
.y100{bottom:12.640000pt;}
.y90{bottom:12.793499pt;}
.yb0{bottom:13.440000pt;}
.yae{bottom:13.920000pt;}
.yb5{bottom:13.960000pt;}
.yb7{bottom:14.080000pt;}
.y104{bottom:16.160000pt;}
.y11b{bottom:17.120000pt;}
.y119{bottom:17.600000pt;}
.y118{bottom:17.760000pt;}
.yeb{bottom:17.920000pt;}
.yee{bottom:17.946667pt;}
.yef{bottom:18.266667pt;}
.yaf{bottom:18.880000pt;}
.ycb{bottom:21.760000pt;}
.yb1{bottom:22.880000pt;}
.y125{bottom:23.040000pt;}
.y123{bottom:23.173333pt;}
.yc8{bottom:30.720000pt;}
.y133{bottom:32.160000pt;}
.yca{bottom:39.680000pt;}
.yf2{bottom:48.840000pt;}
.yf1{bottom:50.120000pt;}
.y1{bottom:51.200000pt;}
.yab{bottom:51.232000pt;}
.yc9{bottom:57.600000pt;}
.yc2{bottom:118.752000pt;}
.y96{bottom:121.600000pt;}
.y79{bottom:122.080000pt;}
.y45{bottom:131.520000pt;}
.y2e{bottom:134.080000pt;}
.y1a{bottom:134.880000pt;}
.y22{bottom:135.680000pt;}
.y5f{bottom:149.440000pt;}
.ydd{bottom:150.400000pt;}
.yc1{bottom:154.586667pt;}
.y95{bottom:157.440000pt;}
.y78{bottom:157.920000pt;}
.y44{bottom:167.360000pt;}
.y2d{bottom:169.786667pt;}
.y19{bottom:170.746667pt;}
.y21{bottom:171.546667pt;}
.y5e{bottom:185.306667pt;}
.ydc{bottom:186.266667pt;}
.yc0{bottom:190.426667pt;}
.y94{bottom:193.306667pt;}
.y77{bottom:193.786667pt;}
.yec{bottom:194.120000pt;}
.yd7{bottom:194.426667pt;}
.ye9{bottom:196.346667pt;}
.yf7{bottom:199.066667pt;}
.y43{bottom:203.066667pt;}
.y2c{bottom:205.626667pt;}
.y18{bottom:206.426667pt;}
.y20{bottom:207.386667pt;}
.y121{bottom:216.186667pt;}
.y5d{bottom:221.146667pt;}
.ydb{bottom:221.946667pt;}
.y8f{bottom:225.213333pt;}
.ybf{bottom:226.306667pt;}
.y76{bottom:229.626667pt;}
.yd6{bottom:230.306667pt;}
.y93{bottom:231.866667pt;}
.ye8{bottom:232.226667pt;}
.yf6{bottom:234.906667pt;}
.y42{bottom:238.906667pt;}
.ybe{bottom:240.866667pt;}
.y2b{bottom:241.466667pt;}
.y17{bottom:242.266667pt;}
.y1f{bottom:243.226667pt;}
.y120{bottom:252.026667pt;}
.yda{bottom:253.813333pt;}
.y5c{bottom:256.986667pt;}
.yd9{bottom:260.506667pt;}
.y74{bottom:261.346667pt;}
.ye7{bottom:264.066667pt;}
.yd5{bottom:265.986667pt;}
.y73{bottom:268.026667pt;}
.yf5{bottom:270.746667pt;}
.y8e{bottom:271.066667pt;}
.y41{bottom:274.746667pt;}
.y2a{bottom:277.306667pt;}
.y16{bottom:278.106667pt;}
.y1e{bottom:278.906667pt;}
.ybd{bottom:279.266667pt;}
.yd4{bottom:280.706667pt;}
.y137{bottom:281.946667pt;}
.y11f{bottom:287.866667pt;}
.y5b{bottom:292.666667pt;}
.yd8{bottom:298.746667pt;}
.y72{bottom:306.266667pt;}
.yf4{bottom:306.586667pt;}
.y8d{bottom:307.546667pt;}
.ye6{bottom:308.666667pt;}
.y40{bottom:310.586667pt;}
.y128{bottom:311.066667pt;}
.y29{bottom:313.146667pt;}
.y15{bottom:313.946667pt;}
.y1d{bottom:314.746667pt;}
.y136{bottom:317.626667pt;}
.ybc{bottom:317.826667pt;}
.yd3{bottom:319.106667pt;}
.y11e{bottom:323.706667pt;}
.y58{bottom:324.546667pt;}
.y57{bottom:331.226667pt;}
.yf3{bottom:342.426667pt;}
.y71{bottom:342.906667pt;}
.y8c{bottom:343.386667pt;}
.ye5{bottom:344.506667pt;}
.y3f{bottom:346.426667pt;}
.y28{bottom:348.826667pt;}
.y14{bottom:349.786667pt;}
.y1c{bottom:350.586667pt;}
.y135{bottom:353.466667pt;}
.ybb{bottom:356.226667pt;}
.yf0{bottom:356.346667pt;}
.yd2{bottom:357.506667pt;}
.y11d{bottom:359.546667pt;}
.y56{bottom:370.426667pt;}
.y11c{bottom:373.466667pt;}
.y70{bottom:378.746667pt;}
.y8b{bottom:379.226667pt;}
.ye4{bottom:380.346667pt;}
.y3e{bottom:382.306667pt;}
.y27{bottom:384.706667pt;}
.y7c{bottom:385.506667pt;}
.y13{bottom:385.666667pt;}
.y1b{bottom:386.466667pt;}
.y134{bottom:389.346667pt;}
.y12e{bottom:389.506667pt;}
.yba{bottom:394.813333pt;}
.yd1{bottom:396.093333pt;}
.y132{bottom:403.266667pt;}
.y55{bottom:406.306667pt;}
.y6f{bottom:414.626667pt;}
.y8a{bottom:415.906667pt;}
.ye3{bottom:416.226667pt;}
.y105{bottom:417.760000pt;}
.y3d{bottom:418.786667pt;}
.y10d{bottom:419.200000pt;}
.y26{bottom:420.546667pt;}
.y7b{bottom:421.346667pt;}
.y12{bottom:422.306667pt;}
.yc6{bottom:423.933333pt;}
.y116{bottom:427.106667pt;}
.yb9{bottom:432.573333pt;}
.ycf{bottom:434.493333pt;}
.y13b{bottom:437.026667pt;}
.y54{bottom:442.146667pt;}
.y89{bottom:447.746667pt;}
.y6e{bottom:450.466667pt;}
.ye2{bottom:452.866667pt;}
.y88{bottom:454.466667pt;}
.y3c{bottom:454.626667pt;}
.ya2{bottom:456.386667pt;}
.y25{bottom:457.186667pt;}
.y11{bottom:457.986667pt;}
.y111{bottom:459.266667pt;}
.yc5{bottom:459.773333pt;}
.y115{bottom:462.946667pt;}
.yb8{bottom:470.333333pt;}
.y13a{bottom:472.866667pt;}
.yce{bottom:473.053333pt;}
.y53{bottom:478.946667pt;}
.y6d{bottom:486.146667pt;}
.ye1{bottom:489.346667pt;}
.y87{bottom:491.106667pt;}
.y3b{bottom:491.266667pt;}
.ya1{bottom:492.226667pt;}
.y60{bottom:493.026667pt;}
.y10{bottom:493.826667pt;}
.y110{bottom:495.106667pt;}
.yc4{bottom:495.613333pt;}
.y114{bottom:498.786667pt;}
.yb6{bottom:508.093333pt;}
.y139{bottom:508.706667pt;}
.ycd{bottom:511.453333pt;}
.y52{bottom:516.386667pt;}
.y126{bottom:517.346667pt;}
.y6c{bottom:522.146667pt;}
.ye0{bottom:525.346667pt;}
.y86{bottom:526.946667pt;}
.y3a{bottom:527.106667pt;}
.ya0{bottom:527.906667pt;}
.y7a{bottom:528.866667pt;}
.yf{bottom:529.666667pt;}
.y10f{bottom:530.946667pt;}
.yc3{bottom:531.293333pt;}
.y113{bottom:534.626667pt;}
.y138{bottom:540.386667pt;}
.yb4{bottom:546.013333pt;}
.yc7{bottom:550.053333pt;}
.y51{bottom:553.826667pt;}
.y6b{bottom:558.626667pt;}
.yfe{bottom:559.586667pt;}
.yfc{bottom:561.186667pt;}
.y11a{bottom:561.506667pt;}
.ydf{bottom:561.986667pt;}
.y85{bottom:562.786667pt;}
.y39{bottom:562.946667pt;}
.y9f{bottom:563.746667pt;}
.yaa{bottom:564.546667pt;}
.ye{bottom:565.506667pt;}
.y112{bottom:566.306667pt;}
.y10e{bottom:566.786667pt;}
.yb3{bottom:583.813333pt;}
.yed{bottom:585.186667pt;}
.y4f{bottom:586.346667pt;}
.y12c{bottom:589.666667pt;}
.y12a{bottom:590.946667pt;}
.y4e{bottom:593.053333pt;}
.y6a{bottom:594.493333pt;}
.y84{bottom:598.493333pt;}
.y38{bottom:598.813333pt;}
.y9e{bottom:599.613333pt;}
.ya9{bottom:600.413333pt;}
.yd{bottom:601.213333pt;}
.y107{bottom:616.733333pt;}
.y10a{bottom:621.693333pt;}
.yad{bottom:623.653333pt;}
.y4b{bottom:627.280000pt;}
.y69{bottom:630.333333pt;}
.y4d{bottom:632.573333pt;}
.y83{bottom:634.333333pt;}
.y37{bottom:634.493333pt;}
.y9d{bottom:635.453333pt;}
.ya8{bottom:636.253333pt;}
.yc{bottom:637.053333pt;}
.y49{bottom:664.546667pt;}
.y68{bottom:666.973333pt;}
.y82{bottom:670.173333pt;}
.y36{bottom:670.333333pt;}
.y48{bottom:671.293333pt;}
.ya7{bottom:672.093333pt;}
.yb{bottom:672.893333pt;}
.yac{bottom:685.253333pt;}
.y130{bottom:700.413333pt;}
.y67{bottom:702.813333pt;}
.y81{bottom:706.013333pt;}
.y35{bottom:706.173333pt;}
.y9c{bottom:706.973333pt;}
.y47{bottom:707.933333pt;}
.ya{bottom:708.733333pt;}
.y124{bottom:724.413333pt;}
.yde{bottom:737.813333pt;}
.y66{bottom:738.653333pt;}
.y10c{bottom:741.053333pt;}
.y109{bottom:741.373333pt;}
.yfa{bottom:741.693333pt;}
.y80{bottom:741.853333pt;}
.y34{bottom:742.013333pt;}
.y9b{bottom:742.813333pt;}
.ya6{bottom:743.613333pt;}
.y46{bottom:743.773333pt;}
.y9{bottom:744.573333pt;}
.yea{bottom:765.373333pt;}
.y117{bottom:767.453333pt;}
.y65{bottom:774.333333pt;}
.y7f{bottom:777.533333pt;}
.y33{bottom:777.853333pt;}
.y9a{bottom:778.653333pt;}
.ya5{bottom:779.453333pt;}
.y8{bottom:780.253333pt;}
.y101{bottom:793.440000pt;}
.yf8{bottom:793.600000pt;}
.y129{bottom:798.080000pt;}
.y12f{bottom:798.880000pt;}
.y7d{bottom:809.346667pt;}
.y64{bottom:810.213333pt;}
.y32{bottom:813.733333pt;}
.y99{bottom:814.533333pt;}
.ya4{bottom:815.333333pt;}
.y7{bottom:816.133333pt;}
.y63{bottom:842.013333pt;}
.y62{bottom:848.773333pt;}
.y31{bottom:850.373333pt;}
.ya3{bottom:851.173333pt;}
.y6{bottom:851.973333pt;}
.y23{bottom:885.013333pt;}
.y30{bottom:886.213333pt;}
.y61{bottom:887.013333pt;}
.y5{bottom:887.813333pt;}
.y98{bottom:922.693333pt;}
.y2f{bottom:922.853333pt;}
.y4{bottom:923.653333pt;}
.y122{bottom:928.960000pt;}
.y127{bottom:930.213333pt;}
.y103{bottom:936.933333pt;}
.yff{bottom:939.813333pt;}
.y97{bottom:958.533333pt;}
.y3{bottom:959.333333pt;}
.y2{bottom:995.173333pt;}
.h4{height:12.999969pt;}
.h8{height:18.066058pt;}
.h26{height:18.720000pt;}
.h28{height:18.880000pt;}
.h6{height:19.066541pt;}
.h15{height:20.000207pt;}
.h33{height:21.312000pt;}
.h2b{height:21.440000pt;}
.h32{height:21.472000pt;}
.h25{height:21.600000pt;}
.ha{height:22.999657pt;}
.h13{height:23.066857pt;}
.hd{height:23.999794pt;}
.h17{height:24.000167pt;}
.h29{height:27.840000pt;}
.h18{height:29.284446pt;}
.h2a{height:31.360000pt;}
.h10{height:31.659729pt;}
.h5{height:36.758986pt;}
.h1d{height:37.760000pt;}
.h1e{height:37.792000pt;}
.h1f{height:37.920000pt;}
.h21{height:37.952000pt;}
.h30{height:38.080000pt;}
.h31{height:38.240000pt;}
.h2f{height:38.400000pt;}
.h11{height:39.652388pt;}
.hb{height:43.327552pt;}
.h14{height:43.454146pt;}
.he{height:45.352227pt;}
.h9{height:55.476226pt;}
.h7{height:56.070704pt;}
.hf{height:56.801628pt;}
.h16{height:57.443735pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h12{height:60.519362pt;}
.hc{height:61.110000pt;}
.h27{height:63.656250pt;}
.h19{height:65.822305pt;}
.h1a{height:66.248168pt;}
.h20{height:71.520000pt;}
.h23{height:180.186667pt;}
.h2e{height:188.026667pt;}
.h2c{height:205.786667pt;}
.h2d{height:205.946667pt;}
.h22{height:207.866667pt;}
.h24{height:228.826667pt;}
.h34{height:272.826667pt;}
.h35{height:297.146667pt;}
.h1b{height:793.760000pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:11.999547pt;}
.w8{width:17.866927pt;}
.w6{width:17.934128pt;}
.w23{width:33.792000pt;}
.w21{width:35.680000pt;}
.w24{width:36.640000pt;}
.w22{width:36.960000pt;}
.w28{width:37.312000pt;}
.w9{width:53.932595pt;}
.w4{width:54.066558pt;}
.w5{width:60.001220pt;}
.w25{width:60.960000pt;}
.w27{width:61.120000pt;}
.w20{width:61.280000pt;}
.w14{width:61.952000pt;}
.w2c{width:63.840000pt;}
.w2d{width:63.872000pt;}
.w2b{width:64.000000pt;}
.w16{width:69.920000pt;}
.w18{width:69.952000pt;}
.w26{width:70.912000pt;}
.w15{width:73.120000pt;}
.w17{width:73.152000pt;}
.wf{width:75.552000pt;}
.w19{width:81.120000pt;}
.w1a{width:81.600000pt;}
.wa{width:88.934589pt;}
.w10{width:94.400000pt;}
.w11{width:94.592000pt;}
.w13{width:105.440000pt;}
.w12{width:113.792000pt;}
.we{width:141.920000pt;}
.w7{width:160.007029pt;}
.w1b{width:236.346667pt;}
.w1d{width:273.666667pt;}
.w29{width:280.506667pt;}
.w1e{width:283.386667pt;}
.w1f{width:283.586667pt;}
.w2a{width:286.466667pt;}
.w1c{width:330.906667pt;}
.w2e{width:489.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wd{width:1122.559983pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:2.013651pt;}
.x37{left:5.120000pt;}
.x31{left:6.240000pt;}
.x64{left:7.200000pt;}
.x1a{left:8.308243pt;}
.x68{left:9.666667pt;}
.x53{left:13.280000pt;}
.x36{left:14.240000pt;}
.x28{left:18.746667pt;}
.x49{left:19.680000pt;}
.x4a{left:21.920000pt;}
.x2f{left:23.360000pt;}
.xd{left:24.400507pt;}
.x2a{left:25.760000pt;}
.x43{left:27.200000pt;}
.x2b{left:28.640000pt;}
.x2d{left:30.400000pt;}
.x40{left:32.800000pt;}
.x26{left:33.920000pt;}
.x46{left:34.880000pt;}
.x48{left:36.000000pt;}
.x23{left:37.760000pt;}
.x33{left:38.874667pt;}
.x3c{left:39.840000pt;}
.x4b{left:41.280000pt;}
.xc{left:42.917562pt;}
.x34{left:44.960000pt;}
.x59{left:46.720000pt;}
.x32{left:47.834667pt;}
.x38{left:49.280000pt;}
.x19{left:54.602298pt;}
.x52{left:55.520000pt;}
.x21{left:56.794667pt;}
.x51{left:59.360000pt;}
.xe{left:60.278132pt;}
.x55{left:62.120000pt;}
.x35{left:70.874667pt;}
.x56{left:86.120000pt;}
.x4d{left:92.800000pt;}
.x1f{left:94.559983pt;}
.x57{left:105.760000pt;}
.x54{left:109.120000pt;}
.x50{left:110.120000pt;}
.x20{left:112.352000pt;}
.x2{left:113.471988pt;}
.x58{left:118.240000pt;}
.x72{left:120.192000pt;}
.x69{left:121.472000pt;}
.x6d{left:133.626667pt;}
.x5a{left:136.840000pt;}
.x5c{left:139.840000pt;}
.x4c{left:140.826667pt;}
.x5b{left:144.320000pt;}
.x4f{left:147.680000pt;}
.x79{left:152.026667pt;}
.x5e{left:155.280000pt;}
.x1c{left:156.186655pt;}
.x8{left:173.466655pt;}
.x6{left:177.346667pt;}
.x3b{left:183.226667pt;}
.x1b{left:202.426655pt;}
.x7{left:231.386655pt;}
.x22{left:254.266667pt;}
.x63{left:279.234667pt;}
.x71{left:285.186667pt;}
.x3d{left:288.666667pt;}
.x77{left:295.426667pt;}
.x67{left:300.160000pt;}
.x6c{left:302.560000pt;}
.x76{left:306.466667pt;}
.x17{left:313.013333pt;}
.xb{left:316.213333pt;}
.x5f{left:323.413333pt;}
.x24{left:329.826667pt;}
.x5d{left:341.666655pt;}
.x1d{left:348.706655pt;}
.x3e{left:350.626667pt;}
.x18{left:366.946655pt;}
.x66{left:373.026655pt;}
.x4e{left:377.186667pt;}
.x70{left:393.986667pt;}
.x65{left:396.866667pt;}
.x74{left:401.186667pt;}
.x73{left:402.306667pt;}
.x6a{left:405.346667pt;}
.x9{left:408.880000pt;}
.x25{left:424.226667pt;}
.xa{left:426.813322pt;}
.x13{left:440.213333pt;}
.x14{left:458.173322pt;}
.x7a{left:466.826667pt;}
.xf{left:476.253322pt;}
.x3f{left:493.666667pt;}
.x27{left:518.626667pt;}
.x11{left:531.146667pt;}
.x62{left:537.373317pt;}
.x39{left:539.613317pt;}
.x12{left:549.053322pt;}
.x3a{left:561.373317pt;}
.x41{left:566.813333pt;}
.x3{left:570.013333pt;}
.x75{left:580.480000pt;}
.x5{left:582.053322pt;}
.x15{left:585.680000pt;}
.x6b{left:586.720000pt;}
.x78{left:602.213333pt;}
.x6e{left:606.533333pt;}
.x6f{left:607.493322pt;}
.x29{left:613.213333pt;}
.x7b{left:615.813322pt;}
.x42{left:636.733333pt;}
.x16{left:639.653322pt;}
.x10{left:665.573322pt;}
.x1{left:673.093322pt;}
.x44{left:706.653333pt;}
.x2c{left:707.613333pt;}
.x45{left:776.613333pt;}
.x2e{left:802.213333pt;}
.x47{left:857.733333pt;}
.x30{left:896.613333pt;}
.x61{left:939.333317pt;}
.x1e{left:1013.279983pt;}
.x60{left:1032.159983pt;}
}

