
    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_726007f1a0ae87418f652e89.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_feadaaf889c9a767cfec15d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_d4f9c328cc04d3dc937f3520.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_7a4f1200abc2871287c3145a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_1d565acb654a7dbd2c58024e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_9718051c4f066f29db8d1cd5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6aa394ef6f97413e371199f8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.164700px;}
.ls37{letter-spacing:-0.138348px;}
.ls32{letter-spacing:-0.131760px;}
.ls2d{letter-spacing:-0.125172px;}
.lse{letter-spacing:-0.118584px;}
.ls24{letter-spacing:-0.111996px;}
.ls8{letter-spacing:-0.105408px;}
.lsf{letter-spacing:-0.098820px;}
.lsc{letter-spacing:-0.092232px;}
.ls7{letter-spacing:-0.085644px;}
.lsa{letter-spacing:-0.079056px;}
.ls9{letter-spacing:-0.072468px;}
.lsb{letter-spacing:-0.065880px;}
.ls17{letter-spacing:-0.059292px;}
.ls22{letter-spacing:-0.052704px;}
.ls6{letter-spacing:-0.048060px;}
.ls23{letter-spacing:-0.046116px;}
.ls18{letter-spacing:-0.039528px;}
.ls2e{letter-spacing:-0.026352px;}
.ls10{letter-spacing:-0.019764px;}
.ls20{letter-spacing:-0.013176px;}
.lsd{letter-spacing:-0.006588px;}
.ls4{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.006588px;}
.ls1c{letter-spacing:0.013176px;}
.ls2a{letter-spacing:0.019764px;}
.ls31{letter-spacing:0.026352px;}
.ls28{letter-spacing:0.032940px;}
.ls21{letter-spacing:0.039528px;}
.ls36{letter-spacing:0.046116px;}
.ls35{letter-spacing:0.059292px;}
.ls29{letter-spacing:0.072468px;}
.ls0{letter-spacing:0.079056px;}
.ls11{letter-spacing:0.081396px;}
.ls2c{letter-spacing:0.085644px;}
.ls1a{letter-spacing:0.090972px;}
.ls25{letter-spacing:0.092232px;}
.ls2b{letter-spacing:0.098820px;}
.ls16{letter-spacing:0.105408px;}
.ls1{letter-spacing:0.111996px;}
.ls15{letter-spacing:0.118584px;}
.ls30{letter-spacing:0.125172px;}
.ls13{letter-spacing:0.131760px;}
.ls12{letter-spacing:0.138348px;}
.ls1b{letter-spacing:0.144936px;}
.ls14{letter-spacing:0.151524px;}
.ls1d{letter-spacing:0.158112px;}
.ls27{letter-spacing:0.164700px;}
.ls19{letter-spacing:0.171288px;}
.ls1e{letter-spacing:0.184464px;}
.ls2{letter-spacing:0.197640px;}
.ls26{letter-spacing:44.686404px;}
.ls33{letter-spacing:51.162408px;}
.ls1f{letter-spacing:58.725432px;}
.ls3{letter-spacing:81.045576px;}
.ls34{letter-spacing:216.402624px;}
.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;}
}
.ws36{word-spacing:-65.880000px;}
.ws4e{word-spacing:-14.855940px;}
.ws37{word-spacing:-0.210672px;}
.ws17{word-spacing:-0.201096px;}
.ws35{word-spacing:-0.052704px;}
.ws41{word-spacing:-0.046116px;}
.ws19{word-spacing:-0.039528px;}
.wsaa{word-spacing:-0.032940px;}
.ws92{word-spacing:-0.019764px;}
.ws7{word-spacing:-0.013176px;}
.ws48{word-spacing:-0.006588px;}
.ws0{word-spacing:0.000000px;}
.ws51{word-spacing:0.006588px;}
.ws83{word-spacing:0.019764px;}
.ws84{word-spacing:0.072468px;}
.ws73{word-spacing:0.079056px;}
.ws42{word-spacing:0.085644px;}
.ws1{word-spacing:0.086508px;}
.ws7e{word-spacing:0.092232px;}
.ws5a{word-spacing:0.098820px;}
.ws55{word-spacing:0.105408px;}
.ws3a{word-spacing:0.111996px;}
.ws11{word-spacing:0.118584px;}
.ws7a{word-spacing:0.125172px;}
.ws79{word-spacing:0.144936px;}
.ws58{word-spacing:0.151524px;}
.ws1d{word-spacing:0.158112px;}
.ws6{word-spacing:0.164700px;}
.ws4{word-spacing:0.171288px;}
.ws5{word-spacing:0.177876px;}
.ws2{word-spacing:0.184464px;}
.ws8{word-spacing:0.191052px;}
.ws20{word-spacing:0.197640px;}
.ws3{word-spacing:0.204228px;}
.ws96{word-spacing:0.210816px;}
.ws88{word-spacing:0.362340px;}
.ws91{word-spacing:0.447984px;}
.ws4a{word-spacing:0.500688px;}
.wse{word-spacing:0.527040px;}
.ws60{word-spacing:0.533628px;}
.ws15{word-spacing:0.540216px;}
.ws39{word-spacing:0.546804px;}
.ws69{word-spacing:0.573156px;}
.ws6c{word-spacing:0.744444px;}
.ws6b{word-spacing:0.777384px;}
.ws8d{word-spacing:0.895968px;}
.ws1c{word-spacing:0.915732px;}
.ws6d{word-spacing:1.113372px;}
.ws6a{word-spacing:1.146312px;}
.ws1a{word-spacing:1.271484px;}
.ws44{word-spacing:1.284660px;}
.ws98{word-spacing:1.376892px;}
.ws97{word-spacing:1.409832px;}
.ws14{word-spacing:1.633824px;}
.wsa2{word-spacing:1.772172px;}
.wsb4{word-spacing:1.976400px;}
.ws1e{word-spacing:1.996164px;}
.ws1f{word-spacing:2.002752px;}
.wsac{word-spacing:2.332152px;}
.ws59{word-spacing:2.365092px;}
.ws28{word-spacing:2.378268px;}
.ws80{word-spacing:2.490264px;}
.ws6f{word-spacing:2.694492px;}
.ws95{word-spacing:3.070008px;}
.ws89{word-spacing:3.083184px;}
.ws71{word-spacing:3.096360px;}
.ws8a{word-spacing:3.175416px;}
.ws8b{word-spacing:3.208356px;}
.ws77{word-spacing:3.425760px;}
.ws49{word-spacing:3.432348px;}
.ws62{word-spacing:3.761748px;}
.ws3d{word-spacing:3.781512px;}
.ws50{word-spacing:3.788100px;}
.ws68{word-spacing:4.486428px;}
.ws57{word-spacing:4.506192px;}
.ws67{word-spacing:4.519368px;}
.ws99{word-spacing:4.664304px;}
.ws9a{word-spacing:4.829004px;}
.ws5e{word-spacing:4.861944px;}
.wsb9{word-spacing:4.868532px;}
.ws54{word-spacing:4.875120px;}
.ws24{word-spacing:4.987116px;}
.ws23{word-spacing:5.006880px;}
.ws56{word-spacing:5.217696px;}
.wsb1{word-spacing:5.224284px;}
.wsae{word-spacing:5.237460px;}
.ws22{word-spacing:5.244048px;}
.ws9f{word-spacing:5.250636px;}
.wsab{word-spacing:5.257224px;}
.ws5c{word-spacing:5.329692px;}
.ws5b{word-spacing:5.375808px;}
.wsaf{word-spacing:5.580036px;}
.ws4f{word-spacing:5.586624px;}
.wsa5{word-spacing:5.599800px;}
.ws43{word-spacing:5.751324px;}
.ws9c{word-spacing:6.291540px;}
.ws2d{word-spacing:6.304716px;}
.wsc{word-spacing:6.317892px;}
.ws31{word-spacing:6.324480px;}
.ws64{word-spacing:6.331068px;}
.ws45{word-spacing:6.627528px;}
.ws33{word-spacing:6.660468px;}
.ws47{word-spacing:6.752700px;}
.ws46{word-spacing:6.779052px;}
.ws40{word-spacing:6.805404px;}
.wsa0{word-spacing:7.035984px;}
.ws9{word-spacing:7.055748px;}
.wsa3{word-spacing:7.391736px;}
.wsbc{word-spacing:7.398324px;}
.wsa4{word-spacing:7.846308px;}
.ws3e{word-spacing:8.096652px;}
.ws32{word-spacing:8.103240px;}
.ws18{word-spacing:8.109828px;}
.wsb5{word-spacing:8.821332px;}
.wsb{word-spacing:9.163908px;}
.wsd{word-spacing:9.170496px;}
.ws4d{word-spacing:9.196848px;}
.ws30{word-spacing:9.710712px;}
.ws9e{word-spacing:9.914940px;}
.ws16{word-spacing:10.633032px;}
.ws65{word-spacing:10.784556px;}
.ws66{word-spacing:10.810908px;}
.ws6e{word-spacing:10.962432px;}
.ws87{word-spacing:11.021724px;}
.ws12{word-spacing:11.331360px;}
.ws81{word-spacing:11.337948px;}
.ws2b{word-spacing:11.443356px;}
.ws74{word-spacing:11.687112px;}
.ws94{word-spacing:11.693700px;}
.ws93{word-spacing:11.818872px;}
.ws13{word-spacing:12.082392px;}
.ws76{word-spacing:12.102156px;}
.ws86{word-spacing:12.418380px;}
.wsa8{word-spacing:12.431556px;}
.ws7f{word-spacing:12.471084px;}
.ws78{word-spacing:12.780720px;}
.ws21{word-spacing:13.156236px;}
.ws2f{word-spacing:13.162824px;}
.ws27{word-spacing:13.867740px;}
.ws7c{word-spacing:14.223492px;}
.wsb0{word-spacing:14.249844px;}
.wsbb{word-spacing:14.579244px;}
.ws9d{word-spacing:14.684652px;}
.ws63{word-spacing:14.948172px;}
.ws3f{word-spacing:14.961348px;}
.ws70{word-spacing:15.277572px;}
.wsb2{word-spacing:15.323688px;}
.wsa1{word-spacing:15.455448px;}
.ws85{word-spacing:15.462036px;}
.ws7d{word-spacing:15.804612px;}
.ws34{word-spacing:15.995664px;}
.ws8f{word-spacing:16.377768px;}
.wsb7{word-spacing:16.404120px;}
.ws8c{word-spacing:16.746696px;}
.ws8e{word-spacing:16.759872px;}
.ws53{word-spacing:17.925948px;}
.ws3b{word-spacing:18.169704px;}
.ws82{word-spacing:18.558396px;}
.ws5f{word-spacing:18.663804px;}
.wsa{word-spacing:18.920736px;}
.wsb3{word-spacing:19.605888px;}
.ws25{word-spacing:20.337156px;}
.ws9b{word-spacing:20.343744px;}
.ws1b{word-spacing:20.376684px;}
.ws3c{word-spacing:20.706084px;}
.ws52{word-spacing:21.206772px;}
.ws90{word-spacing:21.450528px;}
.wsba{word-spacing:21.819456px;}
.ws61{word-spacing:21.898512px;}
.ws10{word-spacing:22.162032px;}
.wsa7{word-spacing:22.544136px;}
.ws2e{word-spacing:23.216112px;}
.ws75{word-spacing:23.940792px;}
.wsb8{word-spacing:24.289956px;}
.ws4c{word-spacing:24.797232px;}
.ws4b{word-spacing:25.159572px;}
.ws2a{word-spacing:26.088480px;}
.ws29{word-spacing:26.114832px;}
.wsa6{word-spacing:26.575992px;}
.ws38{word-spacing:26.852688px;}
.ws26{word-spacing:27.695952px;}
.wsa9{word-spacing:28.064880px;}
.wsf{word-spacing:28.967436px;}
.ws7b{word-spacing:29.705292px;}
.ws2c{word-spacing:31.154652px;}
.ws5d{word-spacing:33.644916px;}
.wsad{word-spacing:35.100864px;}
.ws72{word-spacing:35.140392px;}
.wsb6{word-spacing:36.181296px;}
._0{margin-left:-2.835540px;}
._2{margin-left:-1.106784px;}
._1{width:1.212192px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y22{bottom:74.572500px;}
.y2{bottom:74.572689px;}
.y44{bottom:111.936342px;}
.y75{bottom:114.536955px;}
.y8c{bottom:120.573210px;}
.yec{bottom:125.341275px;}
.y20{bottom:129.932535px;}
.y43{bottom:130.926252px;}
.y74{bottom:133.436280px;}
.y8b{bottom:139.563120px;}
.yeb{bottom:144.240600px;}
.y1f{bottom:148.922445px;}
.y42{bottom:149.825577px;}
.y5d{bottom:151.080591px;}
.yd1{bottom:151.713039px;}
.ya0{bottom:161.334813px;}
.yea{bottom:163.139925px;}
.y41{bottom:168.724902px;}
.y5c{bottom:170.070501px;}
.yd0{bottom:170.612364px;}
.y8a{bottom:177.542940px;}
.y73{bottom:179.336523px;}
.y9f{bottom:180.324723px;}
.ye9{bottom:182.129835px;}
.y1e{bottom:185.821833px;}
.y40{bottom:187.714812px;}
.y5b{bottom:188.969826px;}
.y89{bottom:196.532850px;}
.y9e{bottom:199.224048px;}
.y1d{bottom:204.811743px;}
.ycf{bottom:207.511752px;}
.y88{bottom:215.432175px;}
.y9d{bottom:218.213958px;}
.ye8{bottom:219.029223px;}
.y1c{bottom:223.711068px;}
.y3f{bottom:224.614200px;}
.yce{bottom:226.501662px;}
.y5a{bottom:227.040231px;}
.yb5{bottom:236.755884px;}
.ye7{bottom:238.019133px;}
.ycd{bottom:245.400987px;}
.y59{bottom:246.030141px;}
.y72{bottom:252.326622px;}
.y87{bottom:253.502580px;}
.yb4{bottom:255.655209px;}
.ye6{bottom:256.918458px;}
.y1b{bottom:260.610456px;}
.y3e{bottom:261.513588px;}
.y9c{bottom:264.114201px;}
.ycc{bottom:264.390897px;}
.y71{bottom:271.316532px;}
.yb3{bottom:274.645119px;}
.y1a{bottom:279.600366px;}
.y3d{bottom:280.503498px;}
.ycb{bottom:283.290222px;}
.y58{bottom:284.009961px;}
.y86{bottom:290.401968px;}
.yb2{bottom:293.544444px;}
.ye5{bottom:293.817846px;}
.y3c{bottom:299.402823px;}
.yca{bottom:302.189547px;}
.y57{bottom:302.999871px;}
.y70{bottom:309.296352px;}
.y85{bottom:309.391878px;}
.ye4{bottom:312.807756px;}
.y19{bottom:316.499754px;}
.y3b{bottom:318.392733px;}
.yc9{bottom:321.179457px;}
.y84{bottom:328.291203px;}
.yb1{bottom:330.443832px;}
.y18{bottom:335.399079px;}
.y9b{bottom:337.013715px;}
.y3a{bottom:337.292058px;}
.yc8{bottom:340.078782px;}
.y56{bottom:340.979691px;}
.y6f{bottom:346.195740px;}
.y83{bottom:347.190528px;}
.yb0{bottom:349.433742px;}
.ye3{bottom:350.878161px;}
.y17{bottom:354.388989px;}
.y9a{bottom:356.003625px;}
.y39{bottom:356.191383px;}
.y82{bottom:366.180438px;}
.ye2{bottom:369.777486px;}
.y99{bottom:374.902950px;}
.y38{bottom:375.181293px;}
.yc7{bottom:376.978170px;}
.y55{bottom:377.969664px;}
.y6e{bottom:383.185713px;}
.y81{bottom:385.079763px;}
.yaf{bottom:387.504147px;}
.ye1{bottom:388.676811px;}
.y16{bottom:391.288377px;}
.y37{bottom:394.080618px;}
.yc6{bottom:395.968080px;}
.y54{bottom:396.868989px;}
.ye0{bottom:407.666721px;}
.y15{bottom:410.187702px;}
.y98{bottom:411.802338px;}
.yc5{bottom:414.867405px;}
.y53{bottom:415.768314px;}
.y6d{bottom:421.256118px;}
.yae{bottom:425.574552px;}
.ydf{bottom:426.566046px;}
.y14{bottom:429.177612px;}
.y97{bottom:430.792248px;}
.y36{bottom:430.980006px;}
.yc4{bottom:433.766730px;}
.y52{bottom:434.758224px;}
.yde{bottom:445.465371px;}
.y13{bottom:448.076937px;}
.y96{bottom:449.691573px;}
.y35{bottom:449.969916px;}
.yc3{bottom:452.756640px;}
.y51{bottom:453.657549px;}
.y6c{bottom:458.155506px;}
.yad{bottom:463.644957px;}
.ydd{bottom:464.455281px;}
.y12{bottom:467.066847px;}
.y95{bottom:468.590898px;}
.y11{bottom:485.966172px;}
.y34{bottom:486.869304px;}
.y94{bottom:487.580808px;}
.y6b{bottom:495.054894px;}
.yc2{bottom:499.106514px;}
.y50{bottom:499.648377px;}
.ydc{bottom:502.525686px;}
.y80{bottom:503.970105px;}
.y33{bottom:505.768629px;}
.yac{bottom:509.545200px;}
.ydb{bottom:521.425011px;}
.y7f{bottom:522.869430px;}
.y10{bottom:531.866415px;}
.y6a{bottom:532.044867px;}
.y93{bottom:533.481051px;}
.yda{bottom:540.324336px;}
.y7e{bottom:541.768755px;}
.y32{bottom:542.758602px;}
.yd9{bottom:559.314246px;}
.y7d{bottom:560.758665px;}
.y31{bottom:561.657927px;}
.yc1{bottom:563.095758px;}
.y69{bottom:570.115272px;}
.y4f{bottom:572.547891px;}
.y7c{bottom:579.657990px;}
.y30{bottom:580.647837px;}
.yc0{bottom:581.995083px;}
.yab{bottom:582.444714px;}
.y68{bottom:589.014597px;}
.y4e{bottom:591.447216px;}
.y7b{bottom:598.647900px;}
.y2f{bottom:599.547162px;}
.ybf{bottom:600.894408px;}
.yaa{bottom:601.434624px;}
.yf{bottom:604.856514px;}
.y92{bottom:606.471150px;}
.yd8{bottom:606.833490px;}
.y67{bottom:607.913922px;}
.y4d{bottom:610.437126px;}
.y7a{bottom:617.547225px;}
.y2e{bottom:618.446487px;}
.ybe{bottom:619.884318px;}
.ya9{bottom:620.333949px;}
.ye{bottom:623.755839px;}
.y4c{bottom:629.336451px;}
.y79{bottom:636.446550px;}
.y2d{bottom:637.436397px;}
.ybd{bottom:638.783643px;}
.ya8{bottom:639.233274px;}
.yd{bottom:642.655164px;}
.y91{bottom:644.541555px;}
.y4b{bottom:648.235776px;}
.y66{bottom:653.904750px;}
.ya7{bottom:658.223184px;}
.yc{bottom:661.645074px;}
.yd7{bottom:670.733796px;}
.y78{bottom:673.436523px;}
.y2c{bottom:674.335785px;}
.ybc{bottom:675.773616px;}
.ya6{bottom:677.122509px;}
.yb{bottom:680.544399px;}
.y90{bottom:682.611960px;}
.y4a{bottom:685.225749px;}
.yd6{bottom:689.723706px;}
.y77{bottom:692.335848px;}
.y2b{bottom:693.235110px;}
.ybb{bottom:694.672941px;}
.ya{bottom:699.534309px;}
.y49{bottom:704.125074px;}
.yd5{bottom:708.623031px;}
.y76{bottom:711.235173px;}
.yba{bottom:713.572266px;}
.y8f{bottom:720.682365px;}
.ya5{bottom:723.022752px;}
.y48{bottom:723.024399px;}
.y65{bottom:726.804264px;}
.y2a{bottom:730.225083px;}
.y9{bottom:736.433697px;}
.yd4{bottom:745.613004px;}
.y64{bottom:745.794174px;}
.yf0{bottom:749.124408px;}
.yb9{bottom:750.562239px;}
.y8e{bottom:758.752770px;}
.y63{bottom:764.693499px;}
.y29{bottom:767.124471px;}
.yef{bottom:768.023733px;}
.y47{bottom:769.013580px;}
.yb8{bottom:769.461564px;}
.y8{bottom:773.333085px;}
.yd3{bottom:783.592824px;}
.y62{bottom:783.683409px;}
.y28{bottom:786.023796px;}
.yee{bottom:787.013643px;}
.y46{bottom:787.912905px;}
.yb7{bottom:788.360889px;}
.ya4{bottom:796.012851px;}
.y7{bottom:801.323850px;}
.yd2{bottom:802.582734px;}
.y27{bottom:805.013706px;}
.y8d{bottom:805.733445px;}
.ya3{bottom:814.912176px;}
.y6{bottom:820.223175px;}
.y61{bottom:821.663229px;}
.y26{bottom:823.913031px;}
.ya2{bottom:833.902086px;}
.yb6{bottom:834.801348px;}
.y5{bottom:839.122500px;}
.y60{bottom:840.653139px;}
.y25{bottom:842.902941px;}
.ya1{bottom:852.801411px;}
.y45{bottom:860.903004px;}
.yed{bottom:861.802266px;}
.y4{bottom:864.141717px;}
.y5f{bottom:878.632959px;}
.y24{bottom:879.802329px;}
.y3{bottom:891.682500px;}
.y5e{bottom:897.622869px;}
.y23{bottom:898.701654px;}
.y1{bottom:942.892500px;}
.y21{bottom:947.212500px;}
.h5{height:42.947051px;}
.h6{height:43.157461px;}
.h3{height:59.092559px;}
.h1{height:59.382070px;}
.h4{height:59.928926px;}
.h2{height:87.437285px;}
.h0{height:1020.000000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:85.049082px;}
.xe{left:106.380711px;}
.x13{left:110.519937px;}
.xf{left:112.050000px;}
.x12{left:131.849271px;}
.x1{left:133.380000px;}
.x14{left:137.339685px;}
.x11{left:138.779847px;}
.xd{left:159.570576px;}
.x16{left:179.547354px;}
.x17{left:200.878335px;}
.x18{left:227.879253px;}
.x3{left:253.620000px;}
.xc{left:294.300117px;}
.xb{left:303.299325px;}
.xa{left:326.609316px;}
.x6{left:328.860765px;}
.x9{left:343.260486px;}
.x10{left:430.020000px;}
.x7{left:433.530909px;}
.x8{left:446.940783px;}
.x4{left:485.910801px;}
.x5{left:580.860000px;}
.x2{left:615.420666px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.146400pt;}
.ls37{letter-spacing:-0.122976pt;}
.ls32{letter-spacing:-0.117120pt;}
.ls2d{letter-spacing:-0.111264pt;}
.lse{letter-spacing:-0.105408pt;}
.ls24{letter-spacing:-0.099552pt;}
.ls8{letter-spacing:-0.093696pt;}
.lsf{letter-spacing:-0.087840pt;}
.lsc{letter-spacing:-0.081984pt;}
.ls7{letter-spacing:-0.076128pt;}
.lsa{letter-spacing:-0.070272pt;}
.ls9{letter-spacing:-0.064416pt;}
.lsb{letter-spacing:-0.058560pt;}
.ls17{letter-spacing:-0.052704pt;}
.ls22{letter-spacing:-0.046848pt;}
.ls6{letter-spacing:-0.042720pt;}
.ls23{letter-spacing:-0.040992pt;}
.ls18{letter-spacing:-0.035136pt;}
.ls2e{letter-spacing:-0.023424pt;}
.ls10{letter-spacing:-0.017568pt;}
.ls20{letter-spacing:-0.011712pt;}
.lsd{letter-spacing:-0.005856pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.005856pt;}
.ls1c{letter-spacing:0.011712pt;}
.ls2a{letter-spacing:0.017568pt;}
.ls31{letter-spacing:0.023424pt;}
.ls28{letter-spacing:0.029280pt;}
.ls21{letter-spacing:0.035136pt;}
.ls36{letter-spacing:0.040992pt;}
.ls35{letter-spacing:0.052704pt;}
.ls29{letter-spacing:0.064416pt;}
.ls0{letter-spacing:0.070272pt;}
.ls11{letter-spacing:0.072352pt;}
.ls2c{letter-spacing:0.076128pt;}
.ls1a{letter-spacing:0.080864pt;}
.ls25{letter-spacing:0.081984pt;}
.ls2b{letter-spacing:0.087840pt;}
.ls16{letter-spacing:0.093696pt;}
.ls1{letter-spacing:0.099552pt;}
.ls15{letter-spacing:0.105408pt;}
.ls30{letter-spacing:0.111264pt;}
.ls13{letter-spacing:0.117120pt;}
.ls12{letter-spacing:0.122976pt;}
.ls1b{letter-spacing:0.128832pt;}
.ls14{letter-spacing:0.134688pt;}
.ls1d{letter-spacing:0.140544pt;}
.ls27{letter-spacing:0.146400pt;}
.ls19{letter-spacing:0.152256pt;}
.ls1e{letter-spacing:0.163968pt;}
.ls2{letter-spacing:0.175680pt;}
.ls26{letter-spacing:39.721248pt;}
.ls33{letter-spacing:45.477696pt;}
.ls1f{letter-spacing:52.200384pt;}
.ls3{letter-spacing:72.040512pt;}
.ls34{letter-spacing:192.357888pt;}
.ws36{word-spacing:-58.560000pt;}
.ws4e{word-spacing:-13.205280pt;}
.ws37{word-spacing:-0.187264pt;}
.ws17{word-spacing:-0.178752pt;}
.ws35{word-spacing:-0.046848pt;}
.ws41{word-spacing:-0.040992pt;}
.ws19{word-spacing:-0.035136pt;}
.wsaa{word-spacing:-0.029280pt;}
.ws92{word-spacing:-0.017568pt;}
.ws7{word-spacing:-0.011712pt;}
.ws48{word-spacing:-0.005856pt;}
.ws0{word-spacing:0.000000pt;}
.ws51{word-spacing:0.005856pt;}
.ws83{word-spacing:0.017568pt;}
.ws84{word-spacing:0.064416pt;}
.ws73{word-spacing:0.070272pt;}
.ws42{word-spacing:0.076128pt;}
.ws1{word-spacing:0.076896pt;}
.ws7e{word-spacing:0.081984pt;}
.ws5a{word-spacing:0.087840pt;}
.ws55{word-spacing:0.093696pt;}
.ws3a{word-spacing:0.099552pt;}
.ws11{word-spacing:0.105408pt;}
.ws7a{word-spacing:0.111264pt;}
.ws79{word-spacing:0.128832pt;}
.ws58{word-spacing:0.134688pt;}
.ws1d{word-spacing:0.140544pt;}
.ws6{word-spacing:0.146400pt;}
.ws4{word-spacing:0.152256pt;}
.ws5{word-spacing:0.158112pt;}
.ws2{word-spacing:0.163968pt;}
.ws8{word-spacing:0.169824pt;}
.ws20{word-spacing:0.175680pt;}
.ws3{word-spacing:0.181536pt;}
.ws96{word-spacing:0.187392pt;}
.ws88{word-spacing:0.322080pt;}
.ws91{word-spacing:0.398208pt;}
.ws4a{word-spacing:0.445056pt;}
.wse{word-spacing:0.468480pt;}
.ws60{word-spacing:0.474336pt;}
.ws15{word-spacing:0.480192pt;}
.ws39{word-spacing:0.486048pt;}
.ws69{word-spacing:0.509472pt;}
.ws6c{word-spacing:0.661728pt;}
.ws6b{word-spacing:0.691008pt;}
.ws8d{word-spacing:0.796416pt;}
.ws1c{word-spacing:0.813984pt;}
.ws6d{word-spacing:0.989664pt;}
.ws6a{word-spacing:1.018944pt;}
.ws1a{word-spacing:1.130208pt;}
.ws44{word-spacing:1.141920pt;}
.ws98{word-spacing:1.223904pt;}
.ws97{word-spacing:1.253184pt;}
.ws14{word-spacing:1.452288pt;}
.wsa2{word-spacing:1.575264pt;}
.wsb4{word-spacing:1.756800pt;}
.ws1e{word-spacing:1.774368pt;}
.ws1f{word-spacing:1.780224pt;}
.wsac{word-spacing:2.073024pt;}
.ws59{word-spacing:2.102304pt;}
.ws28{word-spacing:2.114016pt;}
.ws80{word-spacing:2.213568pt;}
.ws6f{word-spacing:2.395104pt;}
.ws95{word-spacing:2.728896pt;}
.ws89{word-spacing:2.740608pt;}
.ws71{word-spacing:2.752320pt;}
.ws8a{word-spacing:2.822592pt;}
.ws8b{word-spacing:2.851872pt;}
.ws77{word-spacing:3.045120pt;}
.ws49{word-spacing:3.050976pt;}
.ws62{word-spacing:3.343776pt;}
.ws3d{word-spacing:3.361344pt;}
.ws50{word-spacing:3.367200pt;}
.ws68{word-spacing:3.987936pt;}
.ws57{word-spacing:4.005504pt;}
.ws67{word-spacing:4.017216pt;}
.ws99{word-spacing:4.146048pt;}
.ws9a{word-spacing:4.292448pt;}
.ws5e{word-spacing:4.321728pt;}
.wsb9{word-spacing:4.327584pt;}
.ws54{word-spacing:4.333440pt;}
.ws24{word-spacing:4.432992pt;}
.ws23{word-spacing:4.450560pt;}
.ws56{word-spacing:4.637952pt;}
.wsb1{word-spacing:4.643808pt;}
.wsae{word-spacing:4.655520pt;}
.ws22{word-spacing:4.661376pt;}
.ws9f{word-spacing:4.667232pt;}
.wsab{word-spacing:4.673088pt;}
.ws5c{word-spacing:4.737504pt;}
.ws5b{word-spacing:4.778496pt;}
.wsaf{word-spacing:4.960032pt;}
.ws4f{word-spacing:4.965888pt;}
.wsa5{word-spacing:4.977600pt;}
.ws43{word-spacing:5.112288pt;}
.ws9c{word-spacing:5.592480pt;}
.ws2d{word-spacing:5.604192pt;}
.wsc{word-spacing:5.615904pt;}
.ws31{word-spacing:5.621760pt;}
.ws64{word-spacing:5.627616pt;}
.ws45{word-spacing:5.891136pt;}
.ws33{word-spacing:5.920416pt;}
.ws47{word-spacing:6.002400pt;}
.ws46{word-spacing:6.025824pt;}
.ws40{word-spacing:6.049248pt;}
.wsa0{word-spacing:6.254208pt;}
.ws9{word-spacing:6.271776pt;}
.wsa3{word-spacing:6.570432pt;}
.wsbc{word-spacing:6.576288pt;}
.wsa4{word-spacing:6.974496pt;}
.ws3e{word-spacing:7.197024pt;}
.ws32{word-spacing:7.202880pt;}
.ws18{word-spacing:7.208736pt;}
.wsb5{word-spacing:7.841184pt;}
.wsb{word-spacing:8.145696pt;}
.wsd{word-spacing:8.151552pt;}
.ws4d{word-spacing:8.174976pt;}
.ws30{word-spacing:8.631744pt;}
.ws9e{word-spacing:8.813280pt;}
.ws16{word-spacing:9.451584pt;}
.ws65{word-spacing:9.586272pt;}
.ws66{word-spacing:9.609696pt;}
.ws6e{word-spacing:9.744384pt;}
.ws87{word-spacing:9.797088pt;}
.ws12{word-spacing:10.072320pt;}
.ws81{word-spacing:10.078176pt;}
.ws2b{word-spacing:10.171872pt;}
.ws74{word-spacing:10.388544pt;}
.ws94{word-spacing:10.394400pt;}
.ws93{word-spacing:10.505664pt;}
.ws13{word-spacing:10.739904pt;}
.ws76{word-spacing:10.757472pt;}
.ws86{word-spacing:11.038560pt;}
.wsa8{word-spacing:11.050272pt;}
.ws7f{word-spacing:11.085408pt;}
.ws78{word-spacing:11.360640pt;}
.ws21{word-spacing:11.694432pt;}
.ws2f{word-spacing:11.700288pt;}
.ws27{word-spacing:12.326880pt;}
.ws7c{word-spacing:12.643104pt;}
.wsb0{word-spacing:12.666528pt;}
.wsbb{word-spacing:12.959328pt;}
.ws9d{word-spacing:13.053024pt;}
.ws63{word-spacing:13.287264pt;}
.ws3f{word-spacing:13.298976pt;}
.ws70{word-spacing:13.580064pt;}
.wsb2{word-spacing:13.621056pt;}
.wsa1{word-spacing:13.738176pt;}
.ws85{word-spacing:13.744032pt;}
.ws7d{word-spacing:14.048544pt;}
.ws34{word-spacing:14.218368pt;}
.ws8f{word-spacing:14.558016pt;}
.wsb7{word-spacing:14.581440pt;}
.ws8c{word-spacing:14.885952pt;}
.ws8e{word-spacing:14.897664pt;}
.ws53{word-spacing:15.934176pt;}
.ws3b{word-spacing:16.150848pt;}
.ws82{word-spacing:16.496352pt;}
.ws5f{word-spacing:16.590048pt;}
.wsa{word-spacing:16.818432pt;}
.wsb3{word-spacing:17.427456pt;}
.ws25{word-spacing:18.077472pt;}
.ws9b{word-spacing:18.083328pt;}
.ws1b{word-spacing:18.112608pt;}
.ws3c{word-spacing:18.405408pt;}
.ws52{word-spacing:18.850464pt;}
.ws90{word-spacing:19.067136pt;}
.wsba{word-spacing:19.395072pt;}
.ws61{word-spacing:19.465344pt;}
.ws10{word-spacing:19.699584pt;}
.wsa7{word-spacing:20.039232pt;}
.ws2e{word-spacing:20.636544pt;}
.ws75{word-spacing:21.280704pt;}
.wsb8{word-spacing:21.591072pt;}
.ws4c{word-spacing:22.041984pt;}
.ws4b{word-spacing:22.364064pt;}
.ws2a{word-spacing:23.189760pt;}
.ws29{word-spacing:23.213184pt;}
.wsa6{word-spacing:23.623104pt;}
.ws38{word-spacing:23.869056pt;}
.ws26{word-spacing:24.618624pt;}
.wsa9{word-spacing:24.946560pt;}
.wsf{word-spacing:25.748832pt;}
.ws7b{word-spacing:26.404704pt;}
.ws2c{word-spacing:27.693024pt;}
.ws5d{word-spacing:29.906592pt;}
.wsad{word-spacing:31.200768pt;}
.ws72{word-spacing:31.235904pt;}
.wsb6{word-spacing:32.161152pt;}
._0{margin-left:-2.520480pt;}
._2{margin-left:-0.983808pt;}
._1{width:1.077504pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:66.286667pt;}
.y2{bottom:66.286835pt;}
.y44{bottom:99.498971pt;}
.y75{bottom:101.810627pt;}
.y8c{bottom:107.176187pt;}
.yec{bottom:111.414467pt;}
.y20{bottom:115.495587pt;}
.y43{bottom:116.378891pt;}
.y74{bottom:118.610027pt;}
.y8b{bottom:124.056107pt;}
.yeb{bottom:128.213867pt;}
.y1f{bottom:132.375507pt;}
.y42{bottom:133.178291pt;}
.y5d{bottom:134.293859pt;}
.yd1{bottom:134.856035pt;}
.ya0{bottom:143.408723pt;}
.yea{bottom:145.013267pt;}
.y41{bottom:149.977691pt;}
.y5c{bottom:151.173779pt;}
.yd0{bottom:151.655435pt;}
.y8a{bottom:157.815947pt;}
.y73{bottom:159.410243pt;}
.y9f{bottom:160.288643pt;}
.ye9{bottom:161.893187pt;}
.y1e{bottom:165.174963pt;}
.y40{bottom:166.857611pt;}
.y5b{bottom:167.973179pt;}
.y89{bottom:174.695867pt;}
.y9e{bottom:177.088043pt;}
.y1d{bottom:182.054883pt;}
.ycf{bottom:184.454891pt;}
.y88{bottom:191.495267pt;}
.y9d{bottom:193.967963pt;}
.ye8{bottom:194.692643pt;}
.y1c{bottom:198.854283pt;}
.y3f{bottom:199.657067pt;}
.yce{bottom:201.334811pt;}
.y5a{bottom:201.813539pt;}
.yb5{bottom:210.449675pt;}
.ye7{bottom:211.572563pt;}
.ycd{bottom:218.134211pt;}
.y59{bottom:218.693459pt;}
.y72{bottom:224.290331pt;}
.y87{bottom:225.335627pt;}
.yb4{bottom:227.249075pt;}
.ye6{bottom:228.371963pt;}
.y1b{bottom:231.653739pt;}
.y3e{bottom:232.456523pt;}
.y9c{bottom:234.768179pt;}
.ycc{bottom:235.014131pt;}
.y71{bottom:241.170251pt;}
.yb3{bottom:244.128995pt;}
.y1a{bottom:248.533659pt;}
.y3d{bottom:249.336443pt;}
.ycb{bottom:251.813531pt;}
.y58{bottom:252.453299pt;}
.y86{bottom:258.135083pt;}
.yb2{bottom:260.928395pt;}
.ye5{bottom:261.171419pt;}
.y3c{bottom:266.135843pt;}
.yca{bottom:268.612931pt;}
.y57{bottom:269.333219pt;}
.y70{bottom:274.930091pt;}
.y85{bottom:275.015003pt;}
.ye4{bottom:278.051339pt;}
.y19{bottom:281.333115pt;}
.y3b{bottom:283.015763pt;}
.yc9{bottom:285.492851pt;}
.y84{bottom:291.814403pt;}
.yb1{bottom:293.727851pt;}
.y18{bottom:298.132515pt;}
.y9b{bottom:299.567747pt;}
.y3a{bottom:299.815163pt;}
.yc8{bottom:302.292251pt;}
.y56{bottom:303.093059pt;}
.y6f{bottom:307.729547pt;}
.y83{bottom:308.613803pt;}
.yb0{bottom:310.607771pt;}
.ye3{bottom:311.891699pt;}
.y17{bottom:315.012435pt;}
.y9a{bottom:316.447667pt;}
.y39{bottom:316.614563pt;}
.y82{bottom:325.493723pt;}
.ye2{bottom:328.691099pt;}
.y99{bottom:333.247067pt;}
.y38{bottom:333.494483pt;}
.yc7{bottom:335.091707pt;}
.y55{bottom:335.973035pt;}
.y6e{bottom:340.609523pt;}
.y81{bottom:342.293123pt;}
.yaf{bottom:344.448131pt;}
.ye1{bottom:345.490499pt;}
.y16{bottom:347.811891pt;}
.y37{bottom:350.293883pt;}
.yc6{bottom:351.971627pt;}
.y54{bottom:352.772435pt;}
.ye0{bottom:362.370419pt;}
.y15{bottom:364.611291pt;}
.y98{bottom:366.046523pt;}
.yc5{bottom:368.771027pt;}
.y53{bottom:369.571835pt;}
.y6d{bottom:374.449883pt;}
.yae{bottom:378.288491pt;}
.ydf{bottom:379.169819pt;}
.y14{bottom:381.491211pt;}
.y97{bottom:382.926443pt;}
.y36{bottom:383.093339pt;}
.yc4{bottom:385.570427pt;}
.y52{bottom:386.451755pt;}
.yde{bottom:395.969219pt;}
.y13{bottom:398.290611pt;}
.y96{bottom:399.725843pt;}
.y35{bottom:399.973259pt;}
.yc3{bottom:402.450347pt;}
.y51{bottom:403.251155pt;}
.y6c{bottom:407.249339pt;}
.yad{bottom:412.128851pt;}
.ydd{bottom:412.849139pt;}
.y12{bottom:415.170531pt;}
.y95{bottom:416.525243pt;}
.y11{bottom:431.969931pt;}
.y34{bottom:432.772715pt;}
.y94{bottom:433.405163pt;}
.y6b{bottom:440.048795pt;}
.yc2{bottom:443.650235pt;}
.y50{bottom:444.131891pt;}
.ydc{bottom:446.689499pt;}
.y80{bottom:447.973427pt;}
.y33{bottom:449.572115pt;}
.yac{bottom:452.929067pt;}
.ydb{bottom:463.488899pt;}
.y7f{bottom:464.772827pt;}
.y10{bottom:472.770147pt;}
.y6a{bottom:472.928771pt;}
.y93{bottom:474.205379pt;}
.yda{bottom:480.288299pt;}
.y7e{bottom:481.572227pt;}
.y32{bottom:482.452091pt;}
.yd9{bottom:497.168219pt;}
.y7d{bottom:498.452147pt;}
.y31{bottom:499.251491pt;}
.yc1{bottom:500.529563pt;}
.y69{bottom:506.769131pt;}
.y4f{bottom:508.931459pt;}
.y7c{bottom:515.251547pt;}
.y30{bottom:516.131411pt;}
.yc0{bottom:517.328963pt;}
.yab{bottom:517.728635pt;}
.y68{bottom:523.568531pt;}
.y4e{bottom:525.730859pt;}
.y7b{bottom:532.131467pt;}
.y2f{bottom:532.930811pt;}
.ybf{bottom:534.128363pt;}
.yaa{bottom:534.608555pt;}
.yf{bottom:537.650235pt;}
.y92{bottom:539.085467pt;}
.yd8{bottom:539.407547pt;}
.y67{bottom:540.367931pt;}
.y4d{bottom:542.610779pt;}
.y7a{bottom:548.930867pt;}
.y2e{bottom:549.730211pt;}
.ybe{bottom:551.008283pt;}
.ya9{bottom:551.407955pt;}
.ye{bottom:554.449635pt;}
.y4c{bottom:559.410179pt;}
.y79{bottom:565.730267pt;}
.y2d{bottom:566.610131pt;}
.ybd{bottom:567.807683pt;}
.ya8{bottom:568.207355pt;}
.yd{bottom:571.249035pt;}
.y91{bottom:572.925827pt;}
.y4b{bottom:576.209579pt;}
.y66{bottom:581.248667pt;}
.ya7{bottom:585.087275pt;}
.yc{bottom:588.128955pt;}
.yd7{bottom:596.207819pt;}
.y78{bottom:598.610243pt;}
.y2c{bottom:599.409587pt;}
.ybc{bottom:600.687659pt;}
.ya6{bottom:601.886675pt;}
.yb{bottom:604.928355pt;}
.y90{bottom:606.766187pt;}
.y4a{bottom:609.089555pt;}
.yd6{bottom:613.087739pt;}
.y77{bottom:615.409643pt;}
.y2b{bottom:616.208987pt;}
.ybb{bottom:617.487059pt;}
.ya{bottom:621.808275pt;}
.y49{bottom:625.888955pt;}
.yd5{bottom:629.887139pt;}
.y76{bottom:632.209043pt;}
.yba{bottom:634.286459pt;}
.y8f{bottom:640.606547pt;}
.ya5{bottom:642.686891pt;}
.y48{bottom:642.688355pt;}
.y65{bottom:646.048235pt;}
.y2a{bottom:649.088963pt;}
.y9{bottom:654.607731pt;}
.yd4{bottom:662.767115pt;}
.y64{bottom:662.928155pt;}
.yf0{bottom:665.888363pt;}
.yb9{bottom:667.166435pt;}
.y8e{bottom:674.446907pt;}
.y63{bottom:679.727555pt;}
.y29{bottom:681.888419pt;}
.yef{bottom:682.687763pt;}
.y47{bottom:683.567627pt;}
.yb8{bottom:683.965835pt;}
.y8{bottom:687.407187pt;}
.yd3{bottom:696.526955pt;}
.y62{bottom:696.607475pt;}
.y28{bottom:698.687819pt;}
.yee{bottom:699.567683pt;}
.y46{bottom:700.367027pt;}
.yb7{bottom:700.765235pt;}
.ya4{bottom:707.566979pt;}
.y7{bottom:712.287867pt;}
.yd2{bottom:713.406875pt;}
.y27{bottom:715.567739pt;}
.y8d{bottom:716.207507pt;}
.ya3{bottom:724.366379pt;}
.y6{bottom:729.087267pt;}
.y61{bottom:730.367315pt;}
.y26{bottom:732.367139pt;}
.ya2{bottom:741.246299pt;}
.yb6{bottom:742.045643pt;}
.y5{bottom:745.886667pt;}
.y60{bottom:747.247235pt;}
.y25{bottom:749.247059pt;}
.ya1{bottom:758.045699pt;}
.y45{bottom:765.247115pt;}
.yed{bottom:766.046459pt;}
.y4{bottom:768.125971pt;}
.y5f{bottom:781.007075pt;}
.y24{bottom:782.046515pt;}
.y3{bottom:792.606667pt;}
.y5e{bottom:797.886995pt;}
.y23{bottom:798.845915pt;}
.y1{bottom:838.126667pt;}
.y21{bottom:841.966667pt;}
.h5{height:38.175156pt;}
.h6{height:38.362188pt;}
.h3{height:52.526719pt;}
.h1{height:52.784062pt;}
.h4{height:53.270156pt;}
.h2{height:77.722031pt;}
.h0{height:906.666667pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:75.599184pt;}
.xe{left:94.560632pt;}
.x13{left:98.239944pt;}
.xf{left:99.600000pt;}
.x12{left:117.199352pt;}
.x1{left:118.560000pt;}
.x14{left:122.079720pt;}
.x11{left:123.359864pt;}
.xd{left:141.840512pt;}
.x16{left:159.597648pt;}
.x17{left:178.558520pt;}
.x18{left:202.559336pt;}
.x3{left:225.440000pt;}
.xc{left:261.600104pt;}
.xb{left:269.599400pt;}
.xa{left:290.319392pt;}
.x6{left:292.320680pt;}
.x9{left:305.120432pt;}
.x10{left:382.240000pt;}
.x7{left:385.360808pt;}
.x8{left:397.280696pt;}
.x4{left:431.920712pt;}
.x5{left:516.320000pt;}
.x2{left:547.040592pt;}
}

