
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.887185px;}
.v1{vertical-align:28.513129px;}
.v2{vertical-align:30.599988px;}
.v3{vertical-align:61.199976px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:187.114464px;}
.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;}
}
.ws15{word-spacing:-187.114464px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:17.958033px;}
.ws5{word-spacing:22.648951px;}
.ws9{word-spacing:28.560384px;}
.ws21{word-spacing:38.347153px;}
.ws1b{word-spacing:46.868375px;}
.ws17{word-spacing:58.446750px;}
.ws24{word-spacing:62.375228px;}
.ws1d{word-spacing:63.393174px;}
.ws19{word-spacing:67.623058px;}
.ws20{word-spacing:72.980536px;}
.ws23{word-spacing:75.123528px;}
.ws1e{word-spacing:93.735219px;}
.wsb{word-spacing:101.486096px;}
.wsa{word-spacing:101.488646px;}
.ws1f{word-spacing:105.108068px;}
.ws14{word-spacing:105.620101px;}
.wsd{word-spacing:108.885077px;}
.ws1a{word-spacing:111.280709px;}
.ws2{word-spacing:123.227928px;}
.ws1{word-spacing:123.231168px;}
.ws18{word-spacing:124.082303px;}
.wsf{word-spacing:128.261759px;}
.wse{word-spacing:128.264309px;}
.ws26{word-spacing:128.264666px;}
.ws13{word-spacing:128.267369px;}
.ws11{word-spacing:128.269919px;}
.ws12{word-spacing:129.186886px;}
.ws22{word-spacing:164.422316px;}
.ws16{word-spacing:175.997071px;}
.ws8{word-spacing:177.324634px;}
.wsc{word-spacing:182.223155px;}
.ws3{word-spacing:200.579814px;}
.ws7{word-spacing:202.826844px;}
.ws1c{word-spacing:206.291384px;}
.ws25{word-spacing:241.180882px;}
.ws6{word-spacing:255.962015px;}
.ws10{word-spacing:364.948811px;}
._5d{margin-left:-187.114464px;}
._20{margin-left:-91.200395px;}
._23{margin-left:-86.998900px;}
._1f{margin-left:-82.918243px;}
._1a{margin-left:-81.118391px;}
._1b{margin-left:-74.160778px;}
._1d{margin-left:-72.237208px;}
._1e{margin-left:-70.080121px;}
._25{margin-left:-68.879419px;}
._24{margin-left:-64.196851px;}
._1c{margin-left:-59.399085px;}
._21{margin-left:-56.637448px;}
._22{margin-left:-54.837475px;}
._77{margin-left:-53.811064px;}
._78{margin-left:-52.377439px;}
._19{margin-left:-49.918871px;}
._2c{margin-left:-48.161431px;}
._2a{margin-left:-46.864845px;}
._2b{margin-left:-45.792322px;}
._26{margin-left:-44.148341px;}
._17{margin-left:-42.660680px;}
._13{margin-left:-41.089179px;}
._14{margin-left:-39.732288px;}
._f{margin-left:-38.262418px;}
._12{margin-left:-37.043474px;}
._a{margin-left:-35.848962px;}
._1{margin-left:-34.655073px;}
._28{margin-left:-33.335488px;}
._6{margin-left:-32.208353px;}
._2{margin-left:-31.103119px;}
._15{margin-left:-30.040575px;}
._5{margin-left:-28.946075px;}
._16{margin-left:-27.936000px;}
._3{margin-left:-26.687848px;}
._27{margin-left:-25.665990px;}
._4{margin-left:-24.000026px;}
._10{margin-left:-22.306076px;}
._7{margin-left:-21.071680px;}
._9{margin-left:-19.724551px;}
._8{margin-left:-18.284068px;}
._18{margin-left:-17.220259px;}
._b{margin-left:-15.787572px;}
._2e{margin-left:-14.680323px;}
._0{margin-left:-13.343540px;}
._29{margin-left:-11.807358px;}
._c{margin-left:-10.657975px;}
._32{margin-left:-9.355999px;}
._2d{margin-left:-8.336958px;}
._2f{margin-left:-7.275075px;}
._11{margin-left:-5.594236px;}
._d{margin-left:-4.414791px;}
._e{margin-left:-2.919513px;}
._3c{width:1.199882px;}
._64{width:7.210269px;}
._3d{width:9.032954px;}
._30{width:25.571088px;}
._31{width:26.706438px;}
._3a{width:51.161125px;}
._6a{width:55.102240px;}
._5f{width:68.617360px;}
._69{width:76.141474px;}
._5e{width:79.890774px;}
._62{width:83.657662px;}
._61{width:100.113673px;}
._65{width:108.790467px;}
._3b{width:114.913870px;}
._70{width:120.705980px;}
._6e{width:121.810965px;}
._55{width:128.626137px;}
._45{width:132.380591px;}
._71{width:136.017418px;}
._63{width:144.991091px;}
._6f{width:148.768268px;}
._51{width:164.225792px;}
._3f{width:185.165375px;}
._6c{width:202.896139px;}
._50{width:206.529490px;}
._40{width:216.948618px;}
._73{width:218.985978px;}
._42{width:236.678436px;}
._37{width:241.625401px;}
._74{width:246.023268px;}
._47{width:248.054479px;}
._4d{width:252.350538px;}
._57{width:254.905160px;}
._68{width:260.041255px;}
._35{width:262.223527px;}
._67{width:266.153047px;}
._34{width:268.215080px;}
._41{width:270.703089px;}
._36{width:273.815880px;}
._66{width:278.965837px;}
._4b{width:303.891083px;}
._6d{width:313.394899px;}
._60{width:320.377726px;}
._5b{width:324.615999px;}
._5c{width:327.455329px;}
._58{width:334.982900px;}
._76{width:340.149454px;}
._4e{width:343.565103px;}
._43{width:355.414141px;}
._4c{width:358.729268px;}
._44{width:369.707806px;}
._38{width:377.909129px;}
._46{width:378.928036px;}
._5a{width:383.876091px;}
._48{width:386.483465px;}
._59{width:388.795046px;}
._54{width:395.396549px;}
._39{width:406.771083px;}
._4f{width:409.599731px;}
._52{width:412.608398px;}
._56{width:439.458594px;}
._75{width:443.803245px;}
._4a{width:459.594993px;}
._49{width:468.238963px;}
._53{width:480.071440px;}
._33{width:488.470973px;}
._3e{width:492.087342px;}
._6b{width:634.079641px;}
._72{width:665.240225px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.732628px;}
.fs5{font-size:34.979506px;}
.fs0{font-size:47.999381px;}
.fs4{font-size:50.999320px;}
.fs1{font-size:53.999258px;}
.fs3{font-size:59.999136px;}
.fs2{font-size:119.998152px;}
.y0{bottom:0.000000px;}
.y26{bottom:215.204914px;}
.y24{bottom:215.216914px;}
.y80{bottom:248.616651px;}
.ya9{bottom:248.966900px;}
.y4a{bottom:249.082400px;}
.y11a{bottom:249.149900px;}
.yd2{bottom:249.862250px;}
.y1db{bottom:249.876500px;}
.yf8{bottom:249.877250px;}
.y1b0{bottom:249.877400px;}
.y5{bottom:250.049000px;}
.y159{bottom:252.475819px;}
.y19e{bottom:254.110098px;}
.y170{bottom:254.444522px;}
.y132{bottom:254.496243px;}
.ya8{bottom:265.166894px;}
.y119{bottom:265.349894px;}
.y7f{bottom:266.646943px;}
.y49{bottom:267.082393px;}
.yd1{bottom:267.862243px;}
.y1da{bottom:267.876493px;}
.yf7{bottom:267.877243px;}
.y1af{bottom:267.877393px;}
.y131{bottom:268.749987px;}
.y158{bottom:268.845312px;}
.y19d{bottom:273.794740px;}
.y16f{bottom:274.768276px;}
.y4{bottom:278.848988px;}
.ya7{bottom:281.366887px;}
.y7e{bottom:284.675736px;}
.y48{bottom:285.082386px;}
.y157{bottom:285.216156px;}
.yd0{bottom:285.862236px;}
.y1d9{bottom:285.876486px;}
.yf6{bottom:285.877236px;}
.y1ae{bottom:285.877386px;}
.y12f{bottom:292.337028px;}
.y3{bottom:293.248983px;}
.y19c{bottom:293.569383px;}
.y19a{bottom:293.574333px;}
.y16e{bottom:295.180625px;}
.y19b{bottom:297.814381px;}
.y156{bottom:301.586999px;}
.y7d{bottom:302.706629px;}
.y4f{bottom:303.080279px;}
.y47{bottom:303.082379px;}
.ycf{bottom:303.862228px;}
.y1d8{bottom:303.876478px;}
.y101{bottom:303.877228px;}
.y1ad{bottom:303.877378px;}
.y12e{bottom:306.590772px;}
.y130{bottom:313.719070px;}
.y197{bottom:313.726825px;}
.y199{bottom:313.730875px;}
.y16d{bottom:315.592270px;}
.y155{bottom:317.957843px;}
.y198{bottom:317.971373px;}
.y7c{bottom:320.735422px;}
.y12d{bottom:320.847322px;}
.y46{bottom:321.080272px;}
.yce{bottom:321.860871px;}
.y1d7{bottom:321.874371px;}
.yf5{bottom:321.877221px;}
.y1ac{bottom:321.877371px;}
.y2{bottom:322.046871px;}
.ya6{bottom:325.514570px;}
.ya4{bottom:332.028317px;}
.y196{bottom:334.073866px;}
.y154{bottom:334.329436px;}
.y12c{bottom:335.101066px;}
.y16c{bottom:336.006016px;}
.y1{bottom:336.446865px;}
.y7b{bottom:338.765714px;}
.y45{bottom:339.080264px;}
.ycd{bottom:339.860864px;}
.y1d6{bottom:339.874364px;}
.y1ab{bottom:339.875264px;}
.y100{bottom:339.877214px;}
.ya3{bottom:347.328311px;}
.y153{bottom:350.700280px;}
.y16b{bottom:353.536359px;}
.y7a{bottom:356.796607px;}
.y44{bottom:357.080257px;}
.y12a{bottom:357.196057px;}
.ycc{bottom:357.860857px;}
.y1d5{bottom:357.874357px;}
.yf4{bottom:357.875107px;}
.y1aa{bottom:357.875257px;}
.y16a{bottom:361.186356px;}
.ya2{bottom:362.628305px;}
.y152{bottom:367.071123px;}
.y195{bottom:367.843353px;}
.ya5{bottom:369.130052px;}
.y129{bottom:371.449801px;}
.y79{bottom:374.825400px;}
.y43{bottom:375.080250px;}
.ycb{bottom:375.860850px;}
.y1d4{bottom:375.874350px;}
.yf3{bottom:375.875100px;}
.y1a9{bottom:375.875250px;}
.y12b{bottom:378.576599px;}
.y151{bottom:383.441967px;}
.y194{bottom:384.043346px;}
.y128{bottom:385.703546px;}
.y23{bottom:387.313195px;}
.y78{bottom:392.855693px;}
.y42{bottom:393.080243px;}
.yca{bottom:393.860842px;}
.y1d3{bottom:393.874342px;}
.yf2{bottom:393.875092px;}
.y1a8{bottom:393.875242px;}
.y150{bottom:399.811460px;}
.y127{bottom:399.957290px;}
.ya1{bottom:401.847139px;}
.y169{bottom:403.156339px;}
.y22{bottom:403.513189px;}
.y77{bottom:410.884486px;}
.y41{bottom:411.080236px;}
.yc9{bottom:411.860835px;}
.y1fd{bottom:411.861735px;}
.y1d2{bottom:411.874335px;}
.yf1{bottom:411.875085px;}
.y1a7{bottom:411.875235px;}
.y14f{bottom:416.182304px;}
.y168{bottom:419.356332px;}
.y21{bottom:419.713182px;}
.y126{bottom:421.517831px;}
.ya0{bottom:424.924330px;}
.y76{bottom:428.915378px;}
.y40{bottom:429.080228px;}
.y1fc{bottom:429.859628px;}
.yc8{bottom:429.860828px;}
.y1d1{bottom:429.874328px;}
.yf0{bottom:429.875078px;}
.y1a6{bottom:429.875228px;}
.y191{bottom:430.230578px;}
.y14e{bottom:432.553147px;}
.y167{bottom:435.556326px;}
.y20{bottom:435.913176px;}
.y9f{bottom:440.224324px;}
.y75{bottom:446.943421px;}
.y4e{bottom:447.078871px;}
.y3f{bottom:447.080221px;}
.y1fb{bottom:447.859621px;}
.yc7{bottom:447.860821px;}
.y1d0{bottom:447.874321px;}
.yef{bottom:447.875071px;}
.y1a5{bottom:447.875221px;}
.y190{bottom:448.230571px;}
.y14d{bottom:448.923990px;}
.y1f{bottom:452.113169px;}
.y125{bottom:462.788815px;}
.y74{bottom:464.974314px;}
.y3e{bottom:465.078864px;}
.y14c{bottom:465.295584px;}
.yc6{bottom:465.858714px;}
.y1fa{bottom:465.859614px;}
.y1cf{bottom:465.872214px;}
.yee{bottom:465.875064px;}
.y1a4{bottom:465.875214px;}
.y18f{bottom:466.229214px;}
.y1e{bottom:468.311813px;}
.y124{bottom:478.988808px;}
.y14b{bottom:481.666427px;}
.y9e{bottom:482.389457px;}
.y73{bottom:483.003107px;}
.y3d{bottom:483.078857px;}
.yc5{bottom:483.858706px;}
.y1f9{bottom:483.859606px;}
.y1ce{bottom:483.872206px;}
.yff{bottom:483.872956px;}
.y1a3{bottom:483.873106px;}
.yed{bottom:483.875056px;}
.y18e{bottom:484.229206px;}
.y1d{bottom:484.511806px;}
.y166{bottom:488.887304px;}
.y14a{bottom:498.037271px;}
.y9d{bottom:500.434450px;}
.y72{bottom:501.033400px;}
.y3c{bottom:501.078850px;}
.yc4{bottom:501.858699px;}
.y1f8{bottom:501.859599px;}
.y1cd{bottom:501.872199px;}
.yec{bottom:501.872949px;}
.y1a2{bottom:501.873099px;}
.y18d{bottom:502.229199px;}
.y165{bottom:505.092848px;}
.y149{bottom:514.408114px;}
.y1c{bottom:516.911793px;}
.y9c{bottom:518.477343px;}
.y71{bottom:519.062192px;}
.y3b{bottom:519.078842px;}
.y123{bottom:519.319742px;}
.yc3{bottom:519.858692px;}
.y1f7{bottom:519.859592px;}
.y1cc{bottom:519.872192px;}
.yeb{bottom:519.872942px;}
.y1a1{bottom:519.873092px;}
.y18c{bottom:520.229192px;}
.y148{bottom:530.777608px;}
.y1b{bottom:533.111787px;}
.y122{bottom:535.053536px;}
.y164{bottom:535.244186px;}
.y9b{bottom:536.522335px;}
.y3a{bottom:537.078835px;}
.y70{bottom:537.093085px;}
.yc2{bottom:537.858685px;}
.y1f6{bottom:537.859585px;}
.y1cb{bottom:537.872185px;}
.yea{bottom:537.872935px;}
.y1a0{bottom:537.873085px;}
.y18b{bottom:538.229185px;}
.y147{bottom:547.148451px;}
.y1a{bottom:549.311780px;}
.y163{bottom:550.544180px;}
.y121{bottom:550.785230px;}
.y9a{bottom:554.567328px;}
.y39{bottom:555.078828px;}
.y6f{bottom:555.121878px;}
.y1f5{bottom:555.857478px;}
.yc1{bottom:555.858678px;}
.y1ca{bottom:555.872178px;}
.ye9{bottom:555.872928px;}
.y118{bottom:555.873078px;}
.y18a{bottom:556.229178px;}
.y146{bottom:563.519295px;}
.y19{bottom:565.511774px;}
.y120{bottom:566.519023px;}
.y162{bottom:567.897973px;}
.y99{bottom:572.612321px;}
.y4d{bottom:573.076721px;}
.y38{bottom:573.078821px;}
.y6e{bottom:573.152171px;}
.y1f4{bottom:573.857470px;}
.yc0{bottom:573.858670px;}
.y1c9{bottom:573.872170px;}
.ye8{bottom:573.872920px;}
.y117{bottom:573.873070px;}
.y189{bottom:574.229170px;}
.y145{bottom:579.890888px;}
.y18{bottom:581.711767px;}
.y11f{bottom:582.252817px;}
.y161{bottom:583.197967px;}
.y98{bottom:590.657314px;}
.y37{bottom:591.076714px;}
.y6d{bottom:591.180964px;}
.y1f3{bottom:591.857463px;}
.ybf{bottom:591.858663px;}
.y1c8{bottom:591.870813px;}
.ye7{bottom:591.872913px;}
.y116{bottom:591.873063px;}
.y188{bottom:592.227063px;}
.y144{bottom:596.261731px;}
.y17{bottom:597.909661px;}
.y11e{bottom:597.985261px;}
.y160{bottom:598.496611px;}
.y97{bottom:608.702307px;}
.y36{bottom:609.076706px;}
.y6c{bottom:609.211856px;}
.ybe{bottom:609.856556px;}
.y1f2{bottom:609.857456px;}
.y1c7{bottom:609.870806px;}
.y19f{bottom:609.871706px;}
.ye6{bottom:609.872906px;}
.y115{bottom:609.873056px;}
.y187{bottom:610.227056px;}
.y143{bottom:612.632575px;}
.y16{bottom:614.109654px;}
.y15f{bottom:614.664204px;}
.y96{bottom:626.747299px;}
.y35{bottom:627.076699px;}
.y6b{bottom:627.240649px;}
.ybd{bottom:627.856549px;}
.y1f1{bottom:627.857449px;}
.y1c6{bottom:627.870799px;}
.ye5{bottom:627.871549px;}
.y114{bottom:627.871699px;}
.y186{bottom:628.227049px;}
.y142{bottom:629.003418px;}
.y15e{bottom:629.964198px;}
.y15{bottom:630.309648px;}
.y11d{bottom:632.471747px;}
.y95{bottom:644.790942px;}
.y34{bottom:645.076692px;}
.y15d{bottom:645.264192px;}
.y6a{bottom:645.271542px;}
.y141{bottom:645.374262px;}
.yfa{bottom:645.856542px;}
.y1f0{bottom:645.857442px;}
.y1c5{bottom:645.870792px;}
.ye4{bottom:645.871542px;}
.y113{bottom:645.871692px;}
.y185{bottom:646.227042px;}
.y14{bottom:646.509641px;}
.y140{bottom:661.743755px;}
.y13{bottom:662.709635px;}
.y94{bottom:662.835935px;}
.y15c{bottom:663.011735px;}
.y33{bottom:663.076685px;}
.y69{bottom:663.302435px;}
.ybc{bottom:663.856534px;}
.y1ef{bottom:663.857434px;}
.y1c4{bottom:663.870784px;}
.ye3{bottom:663.871534px;}
.y112{bottom:663.871684px;}
.y184{bottom:664.227034px;}
.y13f{bottom:678.114599px;}
.y12{bottom:678.909628px;}
.y93{bottom:680.880928px;}
.y32{bottom:681.076678px;}
.y68{bottom:681.331227px;}
.yf9{bottom:681.856527px;}
.y1ee{bottom:681.857427px;}
.y1c3{bottom:681.870777px;}
.ye2{bottom:681.871527px;}
.y11c{bottom:681.871677px;}
.y183{bottom:682.227027px;}
.y13e{bottom:694.485442px;}
.y11{bottom:695.109622px;}
.y92{bottom:698.925920px;}
.y31{bottom:699.076670px;}
.y67{bottom:699.361520px;}
.y15b{bottom:699.667220px;}
.y1ed{bottom:699.856070px;}
.ybb{bottom:699.856520px;}
.y1c2{bottom:699.870770px;}
.yfe{bottom:699.871520px;}
.y111{bottom:699.871670px;}
.y182{bottom:700.227020px;}
.y13d{bottom:710.857036px;}
.y10{bottom:711.309615px;}
.y15a{bottom:715.867214px;}
.y91{bottom:716.970913px;}
.y4c{bottom:717.075313px;}
.y30{bottom:717.076663px;}
.y66{bottom:717.390313px;}
.y1ec{bottom:717.856063px;}
.yba{bottom:717.856513px;}
.y1c1{bottom:717.870763px;}
.ye1{bottom:717.871513px;}
.y11b{bottom:717.871663px;}
.y181{bottom:718.227013px;}
.y13c{bottom:725.557330px;}
.yf{bottom:727.508259px;}
.y90{bottom:735.015906px;}
.y2f{bottom:735.075306px;}
.y65{bottom:735.421206px;}
.yb9{bottom:735.855156px;}
.y1eb{bottom:735.856056px;}
.y1c0{bottom:735.868656px;}
.yfd{bottom:735.871506px;}
.y110{bottom:735.871656px;}
.y180{bottom:736.225656px;}
.y13b{bottom:740.857324px;}
.ye{bottom:743.708253px;}
.y8f{bottom:753.060899px;}
.y2e{bottom:753.075299px;}
.y64{bottom:753.449999px;}
.yb8{bottom:753.855148px;}
.y1ea{bottom:753.856048px;}
.y1bf{bottom:753.868648px;}
.yfc{bottom:753.869398px;}
.y10f{bottom:753.869548px;}
.ye0{bottom:753.871498px;}
.y17f{bottom:754.225648px;}
.y13a{bottom:755.558248px;}
.y2d{bottom:771.075292px;}
.y8e{bottom:771.103792px;}
.y63{bottom:771.480291px;}
.yb7{bottom:771.855141px;}
.y1e9{bottom:771.856041px;}
.y1be{bottom:771.868641px;}
.yfb{bottom:771.869391px;}
.y10e{bottom:771.869541px;}
.y139{bottom:771.929091px;}
.y17e{bottom:772.225641px;}
.y138{bottom:788.299935px;}
.y2c{bottom:789.075284px;}
.y8d{bottom:789.148784px;}
.y62{bottom:789.509084px;}
.yb6{bottom:789.855134px;}
.y1e8{bottom:789.856034px;}
.y1bd{bottom:789.868634px;}
.ydf{bottom:789.869384px;}
.y10d{bottom:789.869534px;}
.y17d{bottom:790.225634px;}
.yd{bottom:795.911682px;}
.y137{bottom:804.658178px;}
.y2b{bottom:807.075277px;}
.y8c{bottom:807.193777px;}
.y61{bottom:807.539977px;}
.yb5{bottom:807.855127px;}
.y1e7{bottom:807.856027px;}
.y1bc{bottom:807.868627px;}
.yde{bottom:807.869377px;}
.y10c{bottom:807.869527px;}
.y17c{bottom:808.225627px;}
.yc{bottom:812.111675px;}
.y2a{bottom:825.075270px;}
.y8b{bottom:825.238770px;}
.y60{bottom:825.568770px;}
.y1e6{bottom:825.853920px;}
.yb4{bottom:825.855120px;}
.y1bb{bottom:825.868620px;}
.ydd{bottom:825.869370px;}
.y10b{bottom:825.869520px;}
.y17b{bottom:826.225620px;}
.yb{bottom:830.111668px;}
.y136{bottom:839.468664px;}
.y4b{bottom:843.073163px;}
.y29{bottom:843.075263px;}
.y8a{bottom:843.283763px;}
.y5f{bottom:843.599063px;}
.y1e5{bottom:843.853912px;}
.yb3{bottom:843.855112px;}
.y1ba{bottom:843.868612px;}
.ydc{bottom:843.869362px;}
.y10a{bottom:843.869512px;}
.y17a{bottom:844.225612px;}
.y135{bottom:855.668658px;}
.y28{bottom:861.073156px;}
.y89{bottom:861.328755px;}
.y5e{bottom:861.627855px;}
.yb2{bottom:861.853005px;}
.y1e4{bottom:861.853905px;}
.y1b9{bottom:861.867255px;}
.ydb{bottom:861.869355px;}
.y109{bottom:861.869505px;}
.y179{bottom:862.223505px;}
.y134{bottom:871.868651px;}
.y27{bottom:879.073148px;}
.y88{bottom:879.373748px;}
.y5d{bottom:879.658748px;}
.yb1{bottom:879.852998px;}
.y1e3{bottom:879.853898px;}
.y1b8{bottom:879.867248px;}
.yda{bottom:879.869348px;}
.y108{bottom:879.869498px;}
.y178{bottom:880.223498px;}
.ya{bottom:884.110746px;}
.y87{bottom:897.417391px;}
.y5c{bottom:897.687541px;}
.yb0{bottom:897.852991px;}
.y1e2{bottom:897.853891px;}
.y1b7{bottom:897.867241px;}
.yd9{bottom:897.867991px;}
.y107{bottom:897.868141px;}
.y177{bottom:898.223491px;}
.y86{bottom:915.462384px;}
.y5b{bottom:915.717834px;}
.yaf{bottom:915.852984px;}
.y1e1{bottom:915.853884px;}
.y1b6{bottom:915.867234px;}
.yd8{bottom:915.867984px;}
.y106{bottom:915.868134px;}
.y176{bottom:916.223484px;}
.y9{bottom:920.108632px;}
.y55{bottom:925.908980px;}
.y85{bottom:933.507377px;}
.y5a{bottom:933.746627px;}
.yae{bottom:933.852976px;}
.y1e0{bottom:933.853876px;}
.y1b5{bottom:933.867226px;}
.yd7{bottom:933.867976px;}
.y105{bottom:933.868126px;}
.y175{bottom:934.223476px;}
.y54{bottom:942.108973px;}
.y133{bottom:946.873121px;}
.y84{bottom:951.552369px;}
.y59{bottom:951.777519px;}
.yad{bottom:951.852969px;}
.y1df{bottom:951.853869px;}
.y1b4{bottom:951.867219px;}
.yd6{bottom:951.867969px;}
.y104{bottom:951.868119px;}
.y174{bottom:952.223469px;}
.y53{bottom:958.308967px;}
.y83{bottom:969.597362px;}
.y58{bottom:969.806312px;}
.y1de{bottom:969.852512px;}
.yac{bottom:969.852962px;}
.y1b3{bottom:969.867212px;}
.yd5{bottom:969.867962px;}
.y103{bottom:969.868112px;}
.y173{bottom:970.223462px;}
.y52{bottom:974.508960px;}
.y82{bottom:987.642355px;}
.y57{bottom:987.837205px;}
.y1dd{bottom:987.852505px;}
.yab{bottom:987.852955px;}
.y1b2{bottom:987.867205px;}
.yd4{bottom:987.867955px;}
.y102{bottom:987.868105px;}
.y172{bottom:988.223455px;}
.y51{bottom:990.707604px;}
.y81{bottom:1005.687348px;}
.yaa{bottom:1005.851598px;}
.y1dc{bottom:1005.852498px;}
.y1b1{bottom:1005.865098px;}
.yd3{bottom:1005.867948px;}
.y56{bottom:1005.868098px;}
.y192{bottom:1006.221348px;}
.y171{bottom:1006.222098px;}
.y50{bottom:1006.907597px;}
.y8{bottom:1007.668097px;}
.y193{bottom:1011.217096px;}
.y7{bottom:1023.868090px;}
.y25{bottom:1040.056084px;}
.y6{bottom:1040.068084px;}
.he{height:28.245997px;}
.h7{height:33.230531px;}
.h1{height:45.599412px;}
.h5{height:48.449354px;}
.hf{height:48.803728px;}
.ha{height:50.336539px;}
.hd{height:50.688103px;}
.hc{height:50.693725px;}
.hb{height:50.696539px;}
.h2{height:51.299295px;}
.h4{height:56.999179px;}
.h6{height:76.962482px;}
.h8{height:79.049341px;}
.h9{height:109.649329px;}
.h3{height:113.998244px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:169.823932px;}
.x1c{left:171.934431px;}
.xd{left:195.337422px;}
.x5{left:199.655920px;}
.x6{left:211.116877px;}
.xb{left:212.341935px;}
.xa{left:237.855966px;}
.xc{left:392.368146px;}
.x2{left:424.551706px;}
.x4{left:461.666070px;}
.x3{left:463.541310px;}
.x1e{left:465.771976px;}
.x18{left:467.448965px;}
.x14{left:470.944146px;}
.x13{left:472.716715px;}
.x15{left:479.614330px;}
.xe{left:486.612606px;}
.x1a{left:510.571296px;}
.x8{left:517.300005px;}
.x7{left:529.525288px;}
.x1b{left:536.074286px;}
.x22{left:547.562781px;}
.x24{left:553.138279px;}
.x17{left:557.265689px;}
.x16{left:560.822782px;}
.x1d{left:572.597771px;}
.x19{left:579.591820px;}
.x9{left:580.873268px;}
.x11{left:599.840977px;}
.x10{left:604.456258px;}
.x12{left:608.168042px;}
.x1f{left:611.960180px;}
.x20{left:637.364745px;}
.x21{left:641.737243px;}
.x23{left:669.626732px;}
.xf{left:710.392216px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.677498pt;}
.v1{vertical-align:25.345003pt;}
.v2{vertical-align:27.199989pt;}
.v3{vertical-align:54.399978pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:166.323968pt;}
.ws15{word-spacing:-166.323968pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:15.962696pt;}
.ws5{word-spacing:20.132401pt;}
.ws9{word-spacing:25.387008pt;}
.ws21{word-spacing:34.086359pt;}
.ws1b{word-spacing:41.660778pt;}
.ws17{word-spacing:51.952667pt;}
.ws24{word-spacing:55.444647pt;}
.ws1d{word-spacing:56.349488pt;}
.ws19{word-spacing:60.109385pt;}
.ws20{word-spacing:64.871588pt;}
.ws23{word-spacing:66.776469pt;}
.ws1e{word-spacing:83.320195pt;}
.wsb{word-spacing:90.209863pt;}
.wsa{word-spacing:90.212130pt;}
.ws1f{word-spacing:93.429394pt;}
.ws14{word-spacing:93.884534pt;}
.wsd{word-spacing:96.786735pt;}
.ws1a{word-spacing:98.916186pt;}
.ws2{word-spacing:109.535936pt;}
.ws1{word-spacing:109.538816pt;}
.ws18{word-spacing:110.295380pt;}
.wsf{word-spacing:114.010452pt;}
.wse{word-spacing:114.012719pt;}
.ws26{word-spacing:114.013036pt;}
.ws13{word-spacing:114.015439pt;}
.ws11{word-spacing:114.017706pt;}
.ws12{word-spacing:114.832788pt;}
.ws22{word-spacing:146.153170pt;}
.ws16{word-spacing:156.441841pt;}
.ws8{word-spacing:157.621897pt;}
.wsc{word-spacing:161.976137pt;}
.ws3{word-spacing:178.293168pt;}
.ws7{word-spacing:180.290528pt;}
.ws1c{word-spacing:183.370119pt;}
.ws25{word-spacing:214.383007pt;}
.ws6{word-spacing:227.521791pt;}
.ws10{word-spacing:324.398943pt;}
._5d{margin-left:-166.323968pt;}
._20{margin-left:-81.067018pt;}
._23{margin-left:-77.332356pt;}
._1f{margin-left:-73.705105pt;}
._1a{margin-left:-72.105236pt;}
._1b{margin-left:-65.920691pt;}
._1d{margin-left:-64.210851pt;}
._1e{margin-left:-62.293441pt;}
._25{margin-left:-61.226150pt;}
._24{margin-left:-57.063868pt;}
._1c{margin-left:-52.799187pt;}
._21{margin-left:-50.344398pt;}
._22{margin-left:-48.744423pt;}
._77{margin-left:-47.832057pt;}
._78{margin-left:-46.557723pt;}
._19{margin-left:-44.372330pt;}
._2c{margin-left:-42.810161pt;}
._2a{margin-left:-41.657640pt;}
._2b{margin-left:-40.704287pt;}
._26{margin-left:-39.242970pt;}
._17{margin-left:-37.920605pt;}
._13{margin-left:-36.523715pt;}
._14{margin-left:-35.317589pt;}
._f{margin-left:-34.011039pt;}
._12{margin-left:-32.927533pt;}
._a{margin-left:-31.865744pt;}
._1{margin-left:-30.804509pt;}
._28{margin-left:-29.631545pt;}
._6{margin-left:-28.629647pt;}
._2{margin-left:-27.647217pt;}
._15{margin-left:-26.702733pt;}
._5{margin-left:-25.729844pt;}
._16{margin-left:-24.832000pt;}
._3{margin-left:-23.722531pt;}
._27{margin-left:-22.814213pt;}
._4{margin-left:-21.333357pt;}
._10{margin-left:-19.827623pt;}
._7{margin-left:-18.730382pt;}
._9{margin-left:-17.532934pt;}
._8{margin-left:-16.252505pt;}
._18{margin-left:-15.306897pt;}
._b{margin-left:-14.033398pt;}
._2e{margin-left:-13.049176pt;}
._0{margin-left:-11.860924pt;}
._29{margin-left:-10.495430pt;}
._c{margin-left:-9.473755pt;}
._32{margin-left:-8.316444pt;}
._2d{margin-left:-7.410629pt;}
._2f{margin-left:-6.466733pt;}
._11{margin-left:-4.972654pt;}
._d{margin-left:-3.924259pt;}
._e{margin-left:-2.595122pt;}
._3c{width:1.066562pt;}
._64{width:6.409128pt;}
._3d{width:8.029292pt;}
._30{width:22.729856pt;}
._31{width:23.739056pt;}
._3a{width:45.476555pt;}
._6a{width:48.979769pt;}
._5f{width:60.993209pt;}
._69{width:67.681310pt;}
._5e{width:71.014021pt;}
._62{width:74.362366pt;}
._61{width:88.989931pt;}
._65{width:96.702638pt;}
._3b{width:102.145662pt;}
._70{width:107.294204pt;}
._6e{width:108.276413pt;}
._55{width:114.334344pt;}
._45{width:117.671636pt;}
._71{width:120.904371pt;}
._63{width:128.880970pt;}
._6f{width:132.238460pt;}
._51{width:145.978482pt;}
._3f{width:164.591444pt;}
._6c{width:180.352123pt;}
._50{width:183.581769pt;}
._40{width:192.843216pt;}
._73{width:194.654203pt;}
._42{width:210.380832pt;}
._37{width:214.778134pt;}
._74{width:218.687349pt;}
._47{width:220.492870pt;}
._4d{width:224.311589pt;}
._57{width:226.582364pt;}
._68{width:231.147782pt;}
._35{width:233.087580pt;}
._67{width:236.580487pt;}
._34{width:238.413404pt;}
._41{width:240.624968pt;}
._36{width:243.391893pt;}
._66{width:247.969633pt;}
._4b{width:270.125407pt;}
._6d{width:278.573243pt;}
._60{width:284.780201pt;}
._5b{width:288.547554pt;}
._5c{width:291.071403pt;}
._58{width:297.762578pt;}
._76{width:302.355070pt;}
._4e{width:305.391202pt;}
._43{width:315.923681pt;}
._4c{width:318.870461pt;}
._44{width:328.629161pt;}
._38{width:335.919226pt;}
._46{width:336.824921pt;}
._5a{width:341.223192pt;}
._48{width:343.540858pt;}
._59{width:345.595596pt;}
._54{width:351.463599pt;}
._39{width:361.574296pt;}
._4f{width:364.088650pt;}
._52{width:366.763020pt;}
._56{width:390.629861pt;}
._75{width:394.491773pt;}
._4a{width:408.528882pt;}
._49{width:416.212412pt;}
._53{width:426.730169pt;}
._33{width:434.196421pt;}
._3e{width:437.410970pt;}
._6b{width:563.626347pt;}
._72{width:591.324644pt;}
.fs6{font-size:26.429003pt;}
.fs5{font-size:31.092894pt;}
.fs0{font-size:42.666116pt;}
.fs4{font-size:45.332729pt;}
.fs1{font-size:47.999341pt;}
.fs3{font-size:53.332565pt;}
.fs2{font-size:106.665024pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:191.293257pt;}
.y24{bottom:191.303923pt;}
.y80{bottom:220.992578pt;}
.ya9{bottom:221.303911pt;}
.y4a{bottom:221.406578pt;}
.y11a{bottom:221.466578pt;}
.yd2{bottom:222.099778pt;}
.y1db{bottom:222.112444pt;}
.yf8{bottom:222.113111pt;}
.y1b0{bottom:222.113244pt;}
.y5{bottom:222.265778pt;}
.y159{bottom:224.422950pt;}
.y19e{bottom:225.875643pt;}
.y170{bottom:226.172908pt;}
.y132{bottom:226.218883pt;}
.ya8{bottom:235.703906pt;}
.y119{bottom:235.866572pt;}
.y7f{bottom:237.019505pt;}
.y49{bottom:237.406572pt;}
.yd1{bottom:238.099771pt;}
.y1da{bottom:238.112438pt;}
.yf7{bottom:238.113105pt;}
.y1af{bottom:238.113238pt;}
.y131{bottom:238.888878pt;}
.y158{bottom:238.973611pt;}
.y19d{bottom:243.373103pt;}
.y16f{bottom:244.238468pt;}
.y4{bottom:247.865768pt;}
.ya7{bottom:250.103900pt;}
.y7e{bottom:253.045099pt;}
.y48{bottom:253.406565pt;}
.y157{bottom:253.525472pt;}
.yd0{bottom:254.099765pt;}
.y1d9{bottom:254.112432pt;}
.yf6{bottom:254.113098pt;}
.y1ae{bottom:254.113232pt;}
.y12f{bottom:259.855136pt;}
.y3{bottom:260.665762pt;}
.y19c{bottom:260.950562pt;}
.y19a{bottom:260.954962pt;}
.y16e{bottom:262.382778pt;}
.y19b{bottom:264.723894pt;}
.y156{bottom:268.077333pt;}
.y7d{bottom:269.072559pt;}
.y4f{bottom:269.404692pt;}
.y47{bottom:269.406559pt;}
.ycf{bottom:270.099759pt;}
.y1d8{bottom:270.112425pt;}
.y101{bottom:270.113092pt;}
.y1ad{bottom:270.113225pt;}
.y12e{bottom:272.525131pt;}
.y130{bottom:278.861395pt;}
.y197{bottom:278.868288pt;}
.y199{bottom:278.871888pt;}
.y16d{bottom:280.526462pt;}
.y155{bottom:282.629194pt;}
.y198{bottom:282.641220pt;}
.y7c{bottom:285.098153pt;}
.y12d{bottom:285.197619pt;}
.y46{bottom:285.404686pt;}
.yce{bottom:286.098552pt;}
.y1d7{bottom:286.110552pt;}
.yf5{bottom:286.113086pt;}
.y1ac{bottom:286.113219pt;}
.y2{bottom:286.263885pt;}
.ya6{bottom:289.346284pt;}
.ya4{bottom:295.136282pt;}
.y196{bottom:296.954548pt;}
.y154{bottom:297.181721pt;}
.y12c{bottom:297.867614pt;}
.y16c{bottom:298.672014pt;}
.y1{bottom:299.063880pt;}
.y7b{bottom:301.125080pt;}
.y45{bottom:301.404679pt;}
.ycd{bottom:302.098546pt;}
.y1d6{bottom:302.110546pt;}
.y1ab{bottom:302.111346pt;}
.y100{bottom:302.113079pt;}
.ya3{bottom:308.736277pt;}
.y153{bottom:311.733582pt;}
.y16b{bottom:314.254541pt;}
.y7a{bottom:317.152540pt;}
.y44{bottom:317.404673pt;}
.y12a{bottom:317.507606pt;}
.ycc{bottom:318.098539pt;}
.y1d5{bottom:318.110539pt;}
.yf4{bottom:318.111206pt;}
.y1aa{bottom:318.111339pt;}
.y16a{bottom:321.054538pt;}
.ya2{bottom:322.336271pt;}
.y152{bottom:326.285443pt;}
.y195{bottom:326.971869pt;}
.ya5{bottom:328.115602pt;}
.y129{bottom:330.177601pt;}
.y79{bottom:333.178133pt;}
.y43{bottom:333.404667pt;}
.ycb{bottom:334.098533pt;}
.y1d4{bottom:334.110533pt;}
.yf3{bottom:334.111200pt;}
.y1a9{bottom:334.111333pt;}
.y12b{bottom:336.512532pt;}
.y151{bottom:340.837304pt;}
.y194{bottom:341.371863pt;}
.y128{bottom:342.847596pt;}
.y23{bottom:344.278396pt;}
.y78{bottom:349.205060pt;}
.y42{bottom:349.404660pt;}
.yca{bottom:350.098527pt;}
.y1d3{bottom:350.110527pt;}
.yf2{bottom:350.111193pt;}
.y1a8{bottom:350.111327pt;}
.y150{bottom:355.387965pt;}
.y127{bottom:355.517591pt;}
.ya1{bottom:357.197457pt;}
.y169{bottom:358.361190pt;}
.y22{bottom:358.678390pt;}
.y77{bottom:365.230654pt;}
.y41{bottom:365.404654pt;}
.yc9{bottom:366.098520pt;}
.y1fd{bottom:366.099320pt;}
.y1d2{bottom:366.110520pt;}
.yf1{bottom:366.111187pt;}
.y1a7{bottom:366.111320pt;}
.y14f{bottom:369.939825pt;}
.y168{bottom:372.761184pt;}
.y21{bottom:373.078384pt;}
.y126{bottom:374.682517pt;}
.ya0{bottom:377.710516pt;}
.y76{bottom:381.258114pt;}
.y40{bottom:381.404647pt;}
.y1fc{bottom:382.097447pt;}
.yc8{bottom:382.098514pt;}
.y1d1{bottom:382.110514pt;}
.yf0{bottom:382.111180pt;}
.y1a6{bottom:382.111314pt;}
.y191{bottom:382.427180pt;}
.y14e{bottom:384.491686pt;}
.y167{bottom:387.161178pt;}
.y20{bottom:387.478378pt;}
.y9f{bottom:391.310510pt;}
.y75{bottom:397.283041pt;}
.y4e{bottom:397.403441pt;}
.y3f{bottom:397.404641pt;}
.y1fb{bottom:398.097441pt;}
.yc7{bottom:398.098507pt;}
.y1d0{bottom:398.110507pt;}
.yef{bottom:398.111174pt;}
.y1a5{bottom:398.111307pt;}
.y190{bottom:398.427174pt;}
.y14d{bottom:399.043547pt;}
.y1f{bottom:401.878373pt;}
.y125{bottom:411.367835pt;}
.y74{bottom:413.310501pt;}
.y3e{bottom:413.403435pt;}
.y14c{bottom:413.596075pt;}
.yc6{bottom:414.096634pt;}
.y1fa{bottom:414.097434pt;}
.y1cf{bottom:414.108634pt;}
.yee{bottom:414.111168pt;}
.y1a4{bottom:414.111301pt;}
.y18f{bottom:414.425968pt;}
.y1e{bottom:416.277167pt;}
.y124{bottom:425.767830pt;}
.y14b{bottom:428.147935pt;}
.y9e{bottom:428.790628pt;}
.y73{bottom:429.336095pt;}
.y3d{bottom:429.403428pt;}
.yc5{bottom:430.096628pt;}
.y1f9{bottom:430.097428pt;}
.y1ce{bottom:430.108628pt;}
.yff{bottom:430.109295pt;}
.y1a3{bottom:430.109428pt;}
.yed{bottom:430.111161pt;}
.y18e{bottom:430.425961pt;}
.y1d{bottom:430.677161pt;}
.y166{bottom:434.566493pt;}
.y14a{bottom:442.699796pt;}
.y9d{bottom:444.830622pt;}
.y72{bottom:445.363022pt;}
.y3c{bottom:445.403422pt;}
.yc4{bottom:446.096622pt;}
.y1f8{bottom:446.097422pt;}
.y1cd{bottom:446.108622pt;}
.yec{bottom:446.109288pt;}
.y1a2{bottom:446.109422pt;}
.y18d{bottom:446.425955pt;}
.y165{bottom:448.971420pt;}
.y149{bottom:457.251657pt;}
.y1c{bottom:459.477150pt;}
.y9c{bottom:460.868749pt;}
.y71{bottom:461.388615pt;}
.y3b{bottom:461.403415pt;}
.y123{bottom:461.617549pt;}
.yc3{bottom:462.096615pt;}
.y1f7{bottom:462.097415pt;}
.y1cc{bottom:462.108615pt;}
.yeb{bottom:462.109282pt;}
.y1a1{bottom:462.109415pt;}
.y18c{bottom:462.425948pt;}
.y148{bottom:471.802318pt;}
.y1b{bottom:473.877144pt;}
.y122{bottom:475.603143pt;}
.y164{bottom:475.772610pt;}
.y9b{bottom:476.908743pt;}
.y3a{bottom:477.403409pt;}
.y70{bottom:477.416076pt;}
.yc2{bottom:478.096609pt;}
.y1f6{bottom:478.097409pt;}
.y1cb{bottom:478.108609pt;}
.yea{bottom:478.109275pt;}
.y1a0{bottom:478.109409pt;}
.y18b{bottom:478.425942pt;}
.y147{bottom:486.354179pt;}
.y1a{bottom:488.277138pt;}
.y163{bottom:489.372604pt;}
.y121{bottom:489.586871pt;}
.y9a{bottom:492.948736pt;}
.y39{bottom:493.403403pt;}
.y6f{bottom:493.441669pt;}
.y1f5{bottom:494.095536pt;}
.yc1{bottom:494.096602pt;}
.y1ca{bottom:494.108602pt;}
.ye9{bottom:494.109269pt;}
.y118{bottom:494.109402pt;}
.y18a{bottom:494.425936pt;}
.y146{bottom:500.906040pt;}
.y19{bottom:502.677132pt;}
.y120{bottom:503.572465pt;}
.y162{bottom:504.798198pt;}
.y99{bottom:508.988730pt;}
.y4d{bottom:509.401530pt;}
.y38{bottom:509.403396pt;}
.y6e{bottom:509.468596pt;}
.y1f4{bottom:510.095529pt;}
.yc0{bottom:510.096596pt;}
.y1c9{bottom:510.108596pt;}
.ye8{bottom:510.109263pt;}
.y117{bottom:510.109396pt;}
.y189{bottom:510.425929pt;}
.y145{bottom:515.458567pt;}
.y18{bottom:517.077127pt;}
.y11f{bottom:517.558060pt;}
.y161{bottom:518.398193pt;}
.y98{bottom:525.028723pt;}
.y37{bottom:525.401523pt;}
.y6d{bottom:525.494190pt;}
.y1f3{bottom:526.095523pt;}
.ybf{bottom:526.096590pt;}
.y1c8{bottom:526.107390pt;}
.ye7{bottom:526.109256pt;}
.y116{bottom:526.109390pt;}
.y188{bottom:526.424056pt;}
.y144{bottom:530.010428pt;}
.y17{bottom:531.475254pt;}
.y11e{bottom:531.542454pt;}
.y160{bottom:531.996987pt;}
.y97{bottom:541.068717pt;}
.y36{bottom:541.401517pt;}
.y6c{bottom:541.521650pt;}
.ybe{bottom:542.094716pt;}
.y1f2{bottom:542.095516pt;}
.y1c7{bottom:542.107383pt;}
.y19f{bottom:542.108183pt;}
.ye6{bottom:542.109250pt;}
.y115{bottom:542.109383pt;}
.y187{bottom:542.424050pt;}
.y143{bottom:544.562289pt;}
.y16{bottom:545.875248pt;}
.y15f{bottom:546.368181pt;}
.y96{bottom:557.108710pt;}
.y35{bottom:557.401510pt;}
.y6b{bottom:557.547244pt;}
.ybd{bottom:558.094710pt;}
.y1f1{bottom:558.095510pt;}
.y1c6{bottom:558.107377pt;}
.ye5{bottom:558.108043pt;}
.y114{bottom:558.108177pt;}
.y186{bottom:558.424043pt;}
.y142{bottom:559.114150pt;}
.y15e{bottom:559.968176pt;}
.y15{bottom:560.275243pt;}
.y11d{bottom:562.197108pt;}
.y95{bottom:573.147504pt;}
.y34{bottom:573.401504pt;}
.y15d{bottom:573.568171pt;}
.y6a{bottom:573.574704pt;}
.y141{bottom:573.666011pt;}
.yfa{bottom:574.094704pt;}
.y1f0{bottom:574.095504pt;}
.y1c5{bottom:574.107370pt;}
.ye4{bottom:574.108037pt;}
.y113{bottom:574.108170pt;}
.y185{bottom:574.424037pt;}
.y14{bottom:574.675237pt;}
.y140{bottom:588.216671pt;}
.y13{bottom:589.075231pt;}
.y94{bottom:589.187498pt;}
.y15c{bottom:589.343764pt;}
.y33{bottom:589.401498pt;}
.y69{bottom:589.602164pt;}
.ybc{bottom:590.094697pt;}
.y1ef{bottom:590.095497pt;}
.y1c4{bottom:590.107364pt;}
.ye3{bottom:590.108031pt;}
.y112{bottom:590.108164pt;}
.y184{bottom:590.424030pt;}
.y13f{bottom:602.768532pt;}
.y12{bottom:603.475225pt;}
.y93{bottom:605.227491pt;}
.y32{bottom:605.401491pt;}
.y68{bottom:605.627758pt;}
.yf9{bottom:606.094691pt;}
.y1ee{bottom:606.095491pt;}
.y1c3{bottom:606.107358pt;}
.ye2{bottom:606.108024pt;}
.y11c{bottom:606.108158pt;}
.y183{bottom:606.424024pt;}
.y13e{bottom:617.320393pt;}
.y11{bottom:617.875220pt;}
.y92{bottom:621.267485pt;}
.y31{bottom:621.401485pt;}
.y67{bottom:621.654685pt;}
.y15b{bottom:621.926418pt;}
.y1ed{bottom:622.094284pt;}
.ybb{bottom:622.094684pt;}
.y1c2{bottom:622.107351pt;}
.yfe{bottom:622.108018pt;}
.y111{bottom:622.108151pt;}
.y182{bottom:622.424018pt;}
.y13d{bottom:631.872921pt;}
.y10{bottom:632.275214pt;}
.y15a{bottom:636.326412pt;}
.y91{bottom:637.307478pt;}
.y4c{bottom:637.400278pt;}
.y30{bottom:637.401478pt;}
.y66{bottom:637.680278pt;}
.y1ec{bottom:638.094278pt;}
.yba{bottom:638.094678pt;}
.y1c1{bottom:638.107345pt;}
.ye1{bottom:638.108011pt;}
.y11b{bottom:638.108145pt;}
.y181{bottom:638.424011pt;}
.y13c{bottom:644.939849pt;}
.yf{bottom:646.674008pt;}
.y90{bottom:653.347472pt;}
.y2f{bottom:653.400272pt;}
.y65{bottom:653.707739pt;}
.yb9{bottom:654.093472pt;}
.y1eb{bottom:654.094272pt;}
.y1c0{bottom:654.105472pt;}
.yfd{bottom:654.108005pt;}
.y110{bottom:654.108138pt;}
.y180{bottom:654.422805pt;}
.y13b{bottom:658.539843pt;}
.ye{bottom:661.074002pt;}
.y8f{bottom:669.387466pt;}
.y2e{bottom:669.400266pt;}
.y64{bottom:669.733332pt;}
.yb8{bottom:670.093465pt;}
.y1ea{bottom:670.094265pt;}
.y1bf{bottom:670.105465pt;}
.yfc{bottom:670.106132pt;}
.y10f{bottom:670.106265pt;}
.ye0{bottom:670.107999pt;}
.y17f{bottom:670.422798pt;}
.y13a{bottom:671.607331pt;}
.y2d{bottom:685.400259pt;}
.y8e{bottom:685.425592pt;}
.y63{bottom:685.760259pt;}
.yb7{bottom:686.093459pt;}
.y1e9{bottom:686.094259pt;}
.y1be{bottom:686.105459pt;}
.yfb{bottom:686.106126pt;}
.y10e{bottom:686.106259pt;}
.y139{bottom:686.159192pt;}
.y17e{bottom:686.422792pt;}
.y138{bottom:700.711053pt;}
.y2c{bottom:701.400253pt;}
.y8d{bottom:701.465586pt;}
.y62{bottom:701.785853pt;}
.yb6{bottom:702.093452pt;}
.y1e8{bottom:702.094252pt;}
.y1bd{bottom:702.105452pt;}
.ydf{bottom:702.106119pt;}
.y10d{bottom:702.106252pt;}
.y17d{bottom:702.422786pt;}
.yd{bottom:707.477050pt;}
.y137{bottom:715.251714pt;}
.y2b{bottom:717.400246pt;}
.y8c{bottom:717.505580pt;}
.y61{bottom:717.813313pt;}
.yb5{bottom:718.093446pt;}
.y1e7{bottom:718.094246pt;}
.y1bc{bottom:718.105446pt;}
.yde{bottom:718.106113pt;}
.y10c{bottom:718.106246pt;}
.y17c{bottom:718.422779pt;}
.yc{bottom:721.877045pt;}
.y2a{bottom:733.400240pt;}
.y8b{bottom:733.545573pt;}
.y60{bottom:733.838906pt;}
.y1e6{bottom:734.092373pt;}
.yb4{bottom:734.093440pt;}
.y1bb{bottom:734.105440pt;}
.ydd{bottom:734.106106pt;}
.y10b{bottom:734.106240pt;}
.y17b{bottom:734.422773pt;}
.yb{bottom:737.877038pt;}
.y136{bottom:746.194368pt;}
.y4b{bottom:749.398367pt;}
.y29{bottom:749.400234pt;}
.y8a{bottom:749.585567pt;}
.y5f{bottom:749.865833pt;}
.y1e5{bottom:750.092367pt;}
.yb3{bottom:750.093433pt;}
.y1ba{bottom:750.105433pt;}
.ydc{bottom:750.106100pt;}
.y10a{bottom:750.106233pt;}
.y17a{bottom:750.422766pt;}
.y135{bottom:760.594362pt;}
.y28{bottom:765.398361pt;}
.y89{bottom:765.625560pt;}
.y5e{bottom:765.891427pt;}
.yb2{bottom:766.091560pt;}
.y1e4{bottom:766.092360pt;}
.y1b9{bottom:766.104227pt;}
.ydb{bottom:766.106094pt;}
.y109{bottom:766.106227pt;}
.y179{bottom:766.420893pt;}
.y134{bottom:774.994357pt;}
.y27{bottom:781.398354pt;}
.y88{bottom:781.665554pt;}
.y5d{bottom:781.918887pt;}
.yb1{bottom:782.091554pt;}
.y1e3{bottom:782.092354pt;}
.y1b8{bottom:782.104220pt;}
.yda{bottom:782.106087pt;}
.y108{bottom:782.106220pt;}
.y178{bottom:782.420887pt;}
.ya{bottom:785.876219pt;}
.y87{bottom:797.704348pt;}
.y5c{bottom:797.944481pt;}
.yb0{bottom:798.091547pt;}
.y1e2{bottom:798.092347pt;}
.y1b7{bottom:798.104214pt;}
.yd9{bottom:798.104881pt;}
.y107{bottom:798.105014pt;}
.y177{bottom:798.420881pt;}
.y86{bottom:813.744341pt;}
.y5b{bottom:813.971408pt;}
.yaf{bottom:814.091541pt;}
.y1e1{bottom:814.092341pt;}
.y1b6{bottom:814.104208pt;}
.yd8{bottom:814.104874pt;}
.y106{bottom:814.105008pt;}
.y176{bottom:814.420874pt;}
.y9{bottom:817.874340pt;}
.y55{bottom:823.030204pt;}
.y85{bottom:829.784335pt;}
.y5a{bottom:829.997001pt;}
.yae{bottom:830.091535pt;}
.y1e0{bottom:830.092335pt;}
.y1b5{bottom:830.104201pt;}
.yd7{bottom:830.104868pt;}
.y105{bottom:830.105001pt;}
.y175{bottom:830.420868pt;}
.y54{bottom:837.430198pt;}
.y133{bottom:841.664997pt;}
.y84{bottom:845.824328pt;}
.y59{bottom:846.024462pt;}
.yad{bottom:846.091528pt;}
.y1df{bottom:846.092328pt;}
.y1b4{bottom:846.104195pt;}
.yd6{bottom:846.104862pt;}
.y104{bottom:846.104995pt;}
.y174{bottom:846.420861pt;}
.y53{bottom:851.830193pt;}
.y83{bottom:861.864322pt;}
.y58{bottom:862.050055pt;}
.y1de{bottom:862.091122pt;}
.yac{bottom:862.091522pt;}
.y1b3{bottom:862.104188pt;}
.yd5{bottom:862.104855pt;}
.y103{bottom:862.104988pt;}
.y173{bottom:862.420855pt;}
.y52{bottom:866.230187pt;}
.y82{bottom:877.904316pt;}
.y57{bottom:878.077515pt;}
.y1dd{bottom:878.091115pt;}
.yab{bottom:878.091515pt;}
.y1b2{bottom:878.104182pt;}
.yd4{bottom:878.104849pt;}
.y102{bottom:878.104982pt;}
.y172{bottom:878.420849pt;}
.y51{bottom:880.628981pt;}
.y81{bottom:893.944309pt;}
.yaa{bottom:894.090309pt;}
.y1dc{bottom:894.091109pt;}
.y1b1{bottom:894.102309pt;}
.yd3{bottom:894.104842pt;}
.y56{bottom:894.104976pt;}
.y192{bottom:894.418976pt;}
.y171{bottom:894.419642pt;}
.y50{bottom:895.028975pt;}
.y8{bottom:895.704975pt;}
.y193{bottom:898.859640pt;}
.y7{bottom:910.104969pt;}
.y25{bottom:924.494297pt;}
.y6{bottom:924.504964pt;}
.he{height:25.107553pt;}
.h7{height:29.538250pt;}
.h1{height:40.532810pt;}
.h5{height:43.066092pt;}
.hf{height:43.381092pt;}
.ha{height:44.743590pt;}
.hd{height:45.056091pt;}
.hc{height:45.061089pt;}
.hb{height:45.063590pt;}
.h2{height:45.599374pt;}
.h4{height:50.665937pt;}
.h6{height:68.411095pt;}
.h8{height:70.266081pt;}
.h9{height:97.466070pt;}
.h3{height:101.331773pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:150.954606pt;}
.x1c{left:152.830606pt;}
.xd{left:173.633264pt;}
.x5{left:177.471929pt;}
.x6{left:187.659447pt;}
.xb{left:188.748387pt;}
.xa{left:211.427525pt;}
.xc{left:348.771685pt;}
.x2{left:377.379294pt;}
.x4{left:410.369840pt;}
.x3{left:412.036720pt;}
.x1e{left:414.019535pt;}
.x18{left:415.510191pt;}
.x14{left:418.617019pt;}
.x13{left:420.192635pt;}
.x15{left:426.323849pt;}
.xe{left:432.544538pt;}
.x1a{left:453.841152pt;}
.x8{left:459.822227pt;}
.x7{left:470.689145pt;}
.x1b{left:476.510476pt;}
.x22{left:486.722472pt;}
.x24{left:491.678470pt;}
.x17{left:495.347279pt;}
.x16{left:498.509139pt;}
.x1d{left:508.975796pt;}
.x19{left:515.192729pt;}
.x9{left:516.331793pt;}
.x11{left:533.191980pt;}
.x10{left:537.294452pt;}
.x12{left:540.593815pt;}
.x1f{left:543.964605pt;}
.x20{left:566.546440pt;}
.x21{left:570.433105pt;}
.x23{left:595.223762pt;}
.xf{left:631.459747pt;}
}

