
    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_8bcc2784480cf13f305f9e0e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f35bf70e003dacb16bfe80c5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_43abf678c3fd5e91f7629411.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_6fbd59ea8179ac358f6813ab.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_9c348a83ec0eb56f5bcb991d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_5638f77b1d5bb2a8b7d718ce.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.025200px;}
.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;}
}
.ws0{word-spacing:-37.799985px;}
.ws5{word-spacing:-30.239988px;}
.ws6{word-spacing:-26.459989px;}
.ws1{word-spacing:-18.899992px;}
.ws3{word-spacing:-14.579994px;}
.ws7{word-spacing:-13.010395px;}
.ws4{word-spacing:-4.139978px;}
.ws2{word-spacing:0.000000px;}
._40{margin-left:-10.546400px;}
._1a{margin-left:-9.024723px;}
._14{margin-left:-7.834989px;}
._1f{margin-left:-5.832164px;}
._d{margin-left:-4.784415px;}
._a{margin-left:-3.135175px;}
._41{margin-left:-2.115258px;}
._7{margin-left:-1.096644px;}
._0{width:1.090064px;}
._1{width:2.147079px;}
._2{width:3.985198px;}
._3{width:4.989568px;}
._4{width:6.505181px;}
._5{width:7.596811px;}
._6{width:8.631584px;}
._8{width:10.414844px;}
._9{width:12.336343px;}
._15{width:13.867158px;}
._16{width:14.955998px;}
._17{width:16.164552px;}
._18{width:17.579386px;}
._20{width:20.656875px;}
._21{width:21.698221px;}
._2e{width:23.047287px;}
._1b{width:24.692346px;}
._1e{width:26.453157px;}
._3d{width:27.705574px;}
._13{width:28.789188px;}
._42{width:30.135172px;}
._1d{width:33.721179px;}
._12{width:38.673580px;}
._23{width:41.810398px;}
._27{width:43.250412px;}
._19{width:44.502997px;}
._3b{width:51.573557px;}
._1c{width:53.284220px;}
._29{width:57.171479px;}
._22{width:58.370421px;}
._39{width:60.163149px;}
._25{width:61.995618px;}
._3f{width:63.820772px;}
._3e{width:68.552376px;}
._26{width:70.260740px;}
._30{width:73.492084px;}
._f{width:74.533820px;}
._e{width:75.599963px;}
._10{width:76.759410px;}
._43{width:87.303102px;}
._36{width:89.982393px;}
._2b{width:93.192831px;}
._2c{width:94.288964px;}
._38{width:95.524272px;}
._24{width:100.815185px;}
._28{width:102.338806px;}
._11{width:104.338411px;}
._3c{width:109.938940px;}
._b{width:111.820621px;}
._2a{width:116.784685px;}
._3a{width:118.090133px;}
._31{width:133.196462px;}
._37{width:147.598476px;}
._2d{width:153.226600px;}
._34{width:188.478323px;}
._33{width:189.744948px;}
._35{width:248.108027px;}
._2f{width:2933.385387px;}
._32{width:2935.578675px;}
._c{width:2963.265375px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:46.799981px;}
.fs4{font-size:58.319977px;}
.fs3{font-size:59.759976px;}
.fs1{font-size:75.599970px;}
.fs7{font-size:90.719964px;}
.fs5{font-size:105.839958px;}
.fs6{font-size:120.959952px;}
.fs0{font-size:134.639946px;}
.fs2{font-size:151.199940px;}
.y0{bottom:0.000000px;}
.y19{bottom:5.339998px;}
.y7e{bottom:5.340298px;}
.y177{bottom:69.059972px;}
.y193{bottom:71.579971px;}
.y117{bottom:74.460270px;}
.y1b3{bottom:76.979969px;}
.yc6{bottom:77.339969px;}
.y13c{bottom:77.699969px;}
.y16a{bottom:79.139968px;}
.y8d{bottom:80.039968px;}
.yb0{bottom:83.099967px;}
.y7a{bottom:83.100267px;}
.y36{bottom:83.279967px;}
.y153{bottom:88.859964px;}
.ya6{bottom:89.039964px;}
.yfd{bottom:94.799962px;}
.y156{bottom:95.879962px;}
.y17{bottom:96.959961px;}
.y176{bottom:97.319961px;}
.y192{bottom:99.839960px;}
.y116{bottom:102.720259px;}
.y1b2{bottom:105.419958px;}
.y57{bottom:105.779958px;}
.y13b{bottom:105.959958px;}
.y169{bottom:107.399957px;}
.y8c{bottom:108.299957px;}
.y79{bottom:111.359955px;}
.y35{bottom:111.539955px;}
.y14f{bottom:117.299953px;}
.ya5{bottom:117.479953px;}
.y7c{bottom:118.380253px;}
.y1b6{bottom:122.879951px;}
.yfc{bottom:123.059951px;}
.y16{bottom:125.399950px;}
.y175{bottom:125.759950px;}
.y129{bottom:128.279949px;}
.ye4{bottom:131.159948px;}
.y115{bottom:131.160248px;}
.y1b1{bottom:133.679947px;}
.y56{bottom:134.039946px;}
.y13a{bottom:134.399946px;}
.y168{bottom:135.839946px;}
.y8b{bottom:136.739945px;}
.y78{bottom:139.799944px;}
.y34{bottom:139.979944px;}
.y14e{bottom:145.559942px;}
.ya4{bottom:145.739942px;}
.y157{bottom:146.999941px;}
.y1b5{bottom:151.139940px;}
.yfb{bottom:151.499939px;}
.y15{bottom:153.659939px;}
.y174{bottom:154.019938px;}
.y128{bottom:156.539937px;}
.ye3{bottom:159.419936px;}
.y1b0{bottom:162.119935px;}
.y55{bottom:162.479935px;}
.y167{bottom:164.099934px;}
.y8a{bottom:164.999934px;}
.y77{bottom:168.059933px;}
.y33{bottom:168.239933px;}
.yc8{bottom:169.499932px;}
.y90{bottom:172.199931px;}
.y14d{bottom:173.999930px;}
.ya3{bottom:174.179930px;}
.yaf{bottom:179.399928px;}
.yfa{bottom:179.759928px;}
.y14{bottom:182.099927px;}
.y173{bottom:182.459927px;}
.y127{bottom:184.979926px;}
.ye2{bottom:187.859925px;}
.y54{bottom:190.739924px;}
.y89{bottom:193.439923px;}
.y76{bottom:196.499921px;}
.y32{bottom:196.679921px;}
.y139{bottom:202.259919px;}
.ya2{bottom:202.439919px;}
.yae{bottom:207.659917px;}
.yf9{bottom:208.199917px;}
.y13{bottom:210.359916px;}
.y172{bottom:210.719916px;}
.y126{bottom:213.239915px;}
.yb1{bottom:214.679914px;}
.ye1{bottom:216.119914px;}
.y53{bottom:219.179912px;}
.y88{bottom:221.699911px;}
.y31{bottom:224.939910px;}
.y1af{bottom:229.979908px;}
.y138{bottom:230.699908px;}
.ya1{bottom:230.879908px;}
.y166{bottom:232.139907px;}
.yad{bottom:236.099906px;}
.y108{bottom:236.279905px;}
.y12{bottom:238.799904px;}
.y171{bottom:239.159904px;}
.y125{bottom:241.679903px;}
.ye0{bottom:244.559902px;}
.yc5{bottom:247.439901px;}
.y87{bottom:250.139900px;}
.y30{bottom:253.379899px;}
.y1b7{bottom:254.639898px;}
.y1ae{bottom:258.419897px;}
.y137{bottom:258.959896px;}
.ya0{bottom:259.139896px;}
.y165{bottom:260.399896px;}
.yac{bottom:264.359894px;}
.y107{bottom:264.539894px;}
.y11{bottom:267.059893px;}
.y170{bottom:267.419893px;}
.y124{bottom:269.939892px;}
.y10a{bottom:271.739891px;}
.ydf{bottom:272.819891px;}
.yc4{bottom:275.879890px;}
.yf8{bottom:276.059890px;}
.y2f{bottom:281.639887px;}
.y114{bottom:284.159886px;}
.y1ad{bottom:286.679885px;}
.y136{bottom:287.399885px;}
.y9f{bottom:287.579885px;}
.y164{bottom:288.839884px;}
.ya8{bottom:292.799883px;}
.y106{bottom:292.979883px;}
.y10{bottom:295.499882px;}
.y123{bottom:298.379881px;}
.y14c{bottom:298.559881px;}
.yde{bottom:301.259879px;}
.yc3{bottom:304.139878px;}
.yf7{bottom:304.499878px;}
.y191{bottom:309.539876px;}
.y2e{bottom:310.079876px;}
.y113{bottom:312.419875px;}
.y1ac{bottom:315.119874px;}
.y52{bottom:315.479874px;}
.y135{bottom:315.659874px;}
.y9e{bottom:315.839874px;}
.y163{bottom:317.099873px;}
.y75{bottom:321.059872px;}
.y105{bottom:321.239872px;}
.yf{bottom:323.759870px;}
.y122{bottom:326.639869px;}
.y14b{bottom:326.999869px;}
.yc2{bottom:332.579867px;}
.yf6{bottom:332.759867px;}
.y150{bottom:334.019866px;}
.y16f{bottom:335.459866px;}
.y190{bottom:337.979865px;}
.y2d{bottom:338.339865px;}
.y86{bottom:340.859864px;}
.y1ab{bottom:343.379863px;}
.y51{bottom:343.739863px;}
.y134{bottom:344.099862px;}
.y74{bottom:349.499860px;}
.y104{bottom:349.679860px;}
.ye{bottom:352.199859px;}
.y121{bottom:355.079858px;}
.y14a{bottom:355.259858px;}
.y7b{bottom:356.520157px;}
.y1bb{bottom:360.119856px;}
.yc1{bottom:360.839856px;}
.yf5{bottom:361.199856px;}
.y18f{bottom:366.239854px;}
.y2c{bottom:366.779853px;}
.ydd{bottom:369.119852px;}
.y1aa{bottom:371.819851px;}
.y50{bottom:372.179851px;}
.y133{bottom:372.359851px;}
.y38{bottom:373.799850px;}
.y73{bottom:377.759849px;}
.y103{bottom:377.939849px;}
.yd{bottom:380.459848px;}
.y1ba{bottom:382.619847px;}
.y120{bottom:383.339847px;}
.y149{bottom:383.699847px;}
.yaa{bottom:384.779846px;}
.y162{bottom:385.139846px;}
.yc0{bottom:389.279844px;}
.yf4{bottom:389.459844px;}
.y155{bottom:390.719844px;}
.y18e{bottom:394.679842px;}
.y2b{bottom:395.039842px;}
.ydc{bottom:397.559841px;}
.y1a9{bottom:400.079840px;}
.y4f{bottom:400.439840px;}
.y72{bottom:406.199838px;}
.y102{bottom:406.379837px;}
.ycc{bottom:407.639837px;}
.yc{bottom:408.899836px;}
.y11f{bottom:411.779835px;}
.y148{bottom:411.959835px;}
.y161{bottom:413.399835px;}
.ybf{bottom:417.539833px;}
.y18d{bottom:422.939831px;}
.y2a{bottom:423.479831px;}
.ydb{bottom:425.819830px;}
.y1a8{bottom:428.519829px;}
.y4e{bottom:428.879828px;}
.y71{bottom:434.459826px;}
.y101{bottom:434.639826px;}
.yb{bottom:437.159825px;}
.y11e{bottom:440.039824px;}
.y152{bottom:440.399824px;}
.y9d{bottom:440.579824px;}
.y8f{bottom:441.479823px;}
.y160{bottom:441.839823px;}
.ybe{bottom:445.979822px;}
.y18c{bottom:451.379819px;}
.yda{bottom:454.259818px;}
.y16e{bottom:454.439818px;}
.y4d{bottom:457.139817px;}
.yf3{bottom:457.499817px;}
.y70{bottom:462.899815px;}
.ya{bottom:465.599814px;}
.y11d{bottom:468.479813px;}
.y151{bottom:468.659813px;}
.y9c{bottom:468.839812px;}
.y15f{bottom:470.099812px;}
.ybd{bottom:474.239810px;}
.ya7{bottom:476.039810px;}
.y18b{bottom:479.639808px;}
.y147{bottom:479.999808px;}
.yd9{bottom:482.519807px;}
.y4c{bottom:485.579806px;}
.yf2{bottom:485.759806px;}
.y6f{bottom:491.159804px;}
.y29{bottom:491.339803px;}
.y9{bottom:493.859802px;}
.y1a7{bottom:496.379801px;}
.y11c{bottom:496.739801px;}
.y132{bottom:497.099801px;}
.y9b{bottom:497.279801px;}
.y15e{bottom:498.539801px;}
.ybc{bottom:502.679799px;}
.y18a{bottom:508.079797px;}
.y146{bottom:508.259797px;}
.yd8{bottom:510.959796px;}
.y16d{bottom:511.139796px;}
.y4b{bottom:513.839794px;}
.yf1{bottom:514.199794px;}
.y6e{bottom:519.599792px;}
.y28{bottom:519.779792px;}
.y1a6{bottom:524.819790px;}
.y11b{bottom:525.179790px;}
.y131{bottom:525.359790px;}
.y9a{bottom:525.539790px;}
.ybb{bottom:530.939788px;}
.y13f{bottom:532.379787px;}
.y189{bottom:536.339785px;}
.y145{bottom:536.699785px;}
.yd7{bottom:539.219784px;}
.ycb{bottom:542.279783px;}
.y6d{bottom:547.859781px;}
.y1a5{bottom:553.079779px;}
.y11a{bottom:553.439779px;}
.y130{bottom:553.799778px;}
.yba{bottom:559.379776px;}
.y188{bottom:564.779774px;}
.y144{bottom:564.959774px;}
.y15d{bottom:566.399773px;}
.yd6{bottom:567.659773px;}
.yca{bottom:570.539772px;}
.y6c{bottom:576.299769px;}
.y1a4{bottom:581.519767px;}
.y4a{bottom:581.879767px;}
.yf0{bottom:582.059767px;}
.y100{bottom:587.639765px;}
.y187{bottom:593.039763px;}
.y143{bottom:593.399763px;}
.y99{bottom:593.579763px;}
.yd5{bottom:595.919762px;}
.yc9{bottom:598.979760px;}
.y6b{bottom:604.559758px;}
.y1a3{bottom:609.779756px;}
.y49{bottom:610.139756px;}
.yef{bottom:610.499756px;}
.yff{bottom:616.079754px;}
.y5a{bottom:617.339753px;}
.y186{bottom:621.479751px;}
.y142{bottom:621.659751px;}
.y98{bottom:621.839751px;}
.yd4{bottom:624.359750px;}
.yb9{bottom:627.239749px;}
.y6a{bottom:632.999747px;}
.y16c{bottom:633.179747px;}
.yc7{bottom:634.439746px;}
.y1a2{bottom:638.219745px;}
.y48{bottom:638.579745px;}
.yee{bottom:638.759744px;}
.y27{bottom:644.339742px;}
.y185{bottom:649.739740px;}
.y141{bottom:650.099740px;}
.y97{bottom:650.279740px;}
.yd3{bottom:652.619739px;}
.yb8{bottom:655.679738px;}
.y69{bottom:661.259735px;}
.y1a1{bottom:666.479733px;}
.y47{bottom:666.839733px;}
.y12f{bottom:667.199733px;}
.y1b8{bottom:672.599731px;}
.y26{bottom:672.779731px;}
.y8{bottom:675.299730px;}
.y184{bottom:678.179729px;}
.y140{bottom:678.359729px;}
.y37{bottom:679.799728px;}
.yd2{bottom:681.059728px;}
.yb7{bottom:683.939726px;}
.y15c{bottom:685.379726px;}
.y68{bottom:689.699724px;}
.y1a0{bottom:694.919722px;}
.y46{bottom:695.279722px;}
.y25{bottom:701.039720px;}
.y183{bottom:706.439717px;}
.yed{bottom:706.799717px;}
.yd1{bottom:709.319716px;}
.yb6{bottom:712.379715px;}
.y15b{bottom:713.819714px;}
.y7{bottom:714.899714px;}
.y67{bottom:717.959713px;}
.y96{bottom:718.139713px;}
.y112{bottom:720.659712px;}
.y19f{bottom:723.179711px;}
.y45{bottom:723.539711px;}
.y24{bottom:729.479708px;}
.y182{bottom:734.879706px;}
.yec{bottom:735.059706px;}
.y178{bottom:736.499705px;}
.yb5{bottom:740.639704px;}
.y66{bottom:746.399701px;}
.y95{bottom:746.579701px;}
.y111{bottom:748.919700px;}
.y19e{bottom:751.619699px;}
.y44{bottom:751.979699px;}
.ya9{bottom:753.419699px;}
.y23{bottom:757.739697px;}
.y12b{bottom:758.999696px;}
.y6{bottom:760.259696px;}
.y181{bottom:763.139695px;}
.yeb{bottom:763.499695px;}
.yb4{bottom:769.079692px;}
.y1b9{bottom:770.339692px;}
.y15a{bottom:770.519692px;}
.y65{bottom:774.659690px;}
.y110{bottom:777.359689px;}
.y19d{bottom:779.879688px;}
.y43{bottom:780.239688px;}
.yfe{bottom:786.179686px;}
.y180{bottom:791.579683px;}
.y12e{bottom:791.759683px;}
.yb3{bottom:797.339681px;}
.yd0{bottom:800.039680px;}
.y5{bottom:801.839679px;}
.y64{bottom:803.099679px;}
.y10f{bottom:805.619678px;}
.y19c{bottom:808.319677px;}
.y42{bottom:808.679677px;}
.y154{bottom:810.119676px;}
.yab{bottom:814.259674px;}
.y94{bottom:814.439674px;}
.y17f{bottom:819.839672px;}
.y12d{bottom:820.199672px;}
.y22{bottom:825.779670px;}
.y63{bottom:831.359667px;}
.y10e{bottom:834.059666px;}
.y19b{bottom:836.579665px;}
.y41{bottom:836.939665px;}
.y85{bottom:842.699663px;}
.y93{bottom:842.879663px;}
.y17e{bottom:848.279661px;}
.y12c{bottom:848.459661px;}
.y8e{bottom:849.719660px;}
.y21{bottom:854.039658px;}
.y159{bottom:858.539657px;}
.y62{bottom:859.799656px;}
.y10d{bottom:862.319655px;}
.y19a{bottom:865.019654px;}
.y40{bottom:865.379654px;}
.y84{bottom:870.959652px;}
.y92{bottom:871.139652px;}
.y17d{bottom:876.539649px;}
.y20{bottom:882.479647px;}
.y61{bottom:888.059645px;}
.y10c{bottom:890.759644px;}
.y158{bottom:893.099643px;}
.y199{bottom:893.279643px;}
.y3f{bottom:893.639643px;}
.y4{bottom:893.999642px;}
.y83{bottom:899.399640px;}
.y59{bottom:900.839640px;}
.y16b{bottom:904.439638px;}
.y17c{bottom:904.979638px;}
.y1f{bottom:910.739636px;}
.y60{bottom:916.499633px;}
.y3e{bottom:922.079631px;}
.y13e{bottom:923.519631px;}
.y82{bottom:927.659629px;}
.y17b{bottom:933.239627px;}
.y3{bottom:939.179624px;}
.y194{bottom:940.439624px;}
.yea{bottom:944.759622px;}
.y3d{bottom:950.339620px;}
.y81{bottom:956.099618px;}
.ye6{bottom:957.539617px;}
.y17a{bottom:961.679615px;}
.y1e{bottom:967.439613px;}
.ye9{bottom:973.199611px;}
.y2{bottom:976.259609px;}
.y3c{bottom:978.779608px;}
.y10b{bottom:981.299607px;}
.y80{bottom:984.359606px;}
.y179{bottom:989.939604px;}
.y1d{bottom:995.879602px;}
.y3b{bottom:1007.039597px;}
.y198{bottom:1012.259595px;}
.y5f{bottom:1012.799595px;}
.y1{bottom:1013.519595px;}
.y119{bottom:1018.379593px;}
.y12a{bottom:1025.399590px;}
.y3a{bottom:1035.479586px;}
.y197{bottom:1040.699584px;}
.y5e{bottom:1041.059584px;}
.ycf{bottom:1046.639581px;}
.y1b4{bottom:1047.719581px;}
.y1c{bottom:1063.739575px;}
.y5d{bottom:1069.499572px;}
.yce{bottom:1075.079570px;}
.ye8{bottom:1076.519569px;}
.ye5{bottom:1082.099567px;}
.y91{bottom:1092.179563px;}
.y196{bottom:1097.399561px;}
.y5c{bottom:1097.759561px;}
.ycd{bottom:1103.339559px;}
.yb2{bottom:1120.439552px;}
.y5b{bottom:1126.199550px;}
.y195{bottom:1128.719549px;}
.y39{bottom:1131.779547px;}
.y58{bottom:1138.799544px;}
.y118{bottom:1138.799844px;}
.y7f{bottom:1154.459538px;}
.y1b{bottom:1160.039536px;}
.y13d{bottom:1161.479535px;}
.ye7{bottom:1182.899527px;}
.y1a{bottom:1188.479525px;}
.y109{bottom:1195.499522px;}
.y18{bottom:1249.499500px;}
.y7d{bottom:1249.499800px;}
.hc{height:48.810918px;}
.h6{height:57.237868px;}
.h5{height:58.651148px;}
.ha{height:58.775601px;}
.h4{height:74.160322px;}
.h2{height:74.197236px;}
.h7{height:74.198436px;}
.hb{height:91.428713px;}
.h8{height:106.666832px;}
.h9{height:121.904951px;}
.h1{height:132.141744px;}
.h3{height:148.320644px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:70.919972px;}
.x2e{left:76.499969px;}
.x1{left:87.659965px;}
.x7{left:104.579958px;}
.x3d{left:116.999953px;}
.x2d{left:118.079953px;}
.x15{left:121.319951px;}
.x22{left:124.019950px;}
.x3{left:125.819950px;}
.x11{left:128.519949px;}
.x2a{left:143.279943px;}
.xd{left:145.439942px;}
.x2c{left:152.819939px;}
.x31{left:155.159938px;}
.x10{left:158.579937px;}
.x26{left:169.019932px;}
.x18{left:170.639932px;}
.x35{left:176.039930px;}
.x29{left:180.179973px;}
.xa{left:183.239927px;}
.x3a{left:200.159920px;}
.x25{left:205.199918px;}
.x5{left:207.359917px;}
.x23{left:213.119960px;}
.x9{left:217.079913px;}
.x3c{left:226.979909px;}
.x34{left:237.779905px;}
.x36{left:264.599894px;}
.x2{left:277.559889px;}
.x2b{left:288.359885px;}
.x1c{left:295.919882px;}
.x24{left:313.739920px;}
.x39{left:340.919864px;}
.xc{left:361.079856px;}
.x4{left:376.199850px;}
.x6{left:385.919846px;}
.x2f{left:392.219843px;}
.x30{left:447.839821px;}
.x3e{left:462.419815px;}
.x20{left:510.659796px;}
.x3b{left:538.199785px;}
.x21{left:560.519776px;}
.xb{left:575.099770px;}
.x14{left:595.799762px;}
.x27{left:597.599761px;}
.x17{left:599.399760px;}
.xf{left:605.159758px;}
.x37{left:612.719755px;}
.x33{left:651.599739px;}
.x1a{left:670.859777px;}
.x1e{left:680.579728px;}
.x19{left:688.859724px;}
.x28{left:690.659724px;}
.x1b{left:692.819768px;}
.x16{left:696.779721px;}
.x38{left:703.079719px;}
.x1d{left:711.359715px;}
.x12{left:712.799715px;}
.x32{left:714.599714px;}
.x1f{left:802.259679px;}
.x13{left:803.879678px;}
.xe{left:811.619675px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022400pt;}
.ws0{word-spacing:-33.599987pt;}
.ws5{word-spacing:-26.879989pt;}
.ws6{word-spacing:-23.519991pt;}
.ws1{word-spacing:-16.799993pt;}
.ws3{word-spacing:-12.959995pt;}
.ws7{word-spacing:-11.564795pt;}
.ws4{word-spacing:-3.679980pt;}
.ws2{word-spacing:0.000000pt;}
._40{margin-left:-9.374578pt;}
._1a{margin-left:-8.021976pt;}
._14{margin-left:-6.964434pt;}
._1f{margin-left:-5.184146pt;}
._d{margin-left:-4.252814pt;}
._a{margin-left:-2.786823pt;}
._41{margin-left:-1.880230pt;}
._7{margin-left:-0.974795pt;}
._0{width:0.968946pt;}
._1{width:1.908515pt;}
._2{width:3.542398pt;}
._3{width:4.435172pt;}
._4{width:5.782383pt;}
._5{width:6.752721pt;}
._6{width:7.672519pt;}
._8{width:9.257639pt;}
._9{width:10.965638pt;}
._15{width:12.326363pt;}
._16{width:13.294220pt;}
._17{width:14.368490pt;}
._18{width:15.626121pt;}
._20{width:18.361666pt;}
._21{width:19.287307pt;}
._2e{width:20.486478pt;}
._1b{width:21.948752pt;}
._1e{width:23.513918pt;}
._3d{width:24.627177pt;}
._13{width:25.590389pt;}
._42{width:26.786819pt;}
._1d{width:29.974382pt;}
._12{width:34.376516pt;}
._23{width:37.164799pt;}
._27{width:38.444811pt;}
._19{width:39.558220pt;}
._3b{width:45.843162pt;}
._1c{width:47.363751pt;}
._29{width:50.819093pt;}
._22{width:51.884819pt;}
._39{width:53.478355pt;}
._25{width:55.107216pt;}
._3f{width:56.729576pt;}
._3e{width:60.935446pt;}
._26{width:62.453991pt;}
._30{width:65.326297pt;}
._f{width:66.252285pt;}
._e{width:67.199967pt;}
._10{width:68.230586pt;}
._43{width:77.602757pt;}
._36{width:79.984349pt;}
._2b{width:82.838072pt;}
._2c{width:83.812412pt;}
._38{width:84.910464pt;}
._24{width:89.613498pt;}
._28{width:90.967828pt;}
._11{width:92.745255pt;}
._3c{width:97.723502pt;}
._b{width:99.396107pt;}
._2a{width:103.808609pt;}
._3a{width:104.969007pt;}
._31{width:118.396855pt;}
._37{width:131.198645pt;}
._2d{width:136.201422pt;}
._34{width:167.536287pt;}
._33{width:168.662176pt;}
._35{width:220.540468pt;}
._2f{width:2607.453677pt;}
._32{width:2609.403267pt;}
._c{width:2634.013666pt;}
.fs8{font-size:41.599983pt;}
.fs4{font-size:51.839979pt;}
.fs3{font-size:53.119979pt;}
.fs1{font-size:67.199973pt;}
.fs7{font-size:80.639968pt;}
.fs5{font-size:94.079962pt;}
.fs6{font-size:107.519957pt;}
.fs0{font-size:119.679952pt;}
.fs2{font-size:134.399946pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:4.746665pt;}
.y7e{bottom:4.746931pt;}
.y177{bottom:61.386642pt;}
.y193{bottom:63.626641pt;}
.y117{bottom:66.186907pt;}
.y1b3{bottom:68.426639pt;}
.yc6{bottom:68.746639pt;}
.y13c{bottom:69.066639pt;}
.y16a{bottom:70.346639pt;}
.y8d{bottom:71.146638pt;}
.yb0{bottom:73.866637pt;}
.y7a{bottom:73.866904pt;}
.y36{bottom:74.026637pt;}
.y153{bottom:78.986635pt;}
.ya6{bottom:79.146635pt;}
.yfd{bottom:84.266633pt;}
.y156{bottom:85.226633pt;}
.y17{bottom:86.186632pt;}
.y176{bottom:86.506632pt;}
.y192{bottom:88.746631pt;}
.y116{bottom:91.306897pt;}
.y1b2{bottom:93.706629pt;}
.y57{bottom:94.026629pt;}
.y13b{bottom:94.186629pt;}
.y169{bottom:95.466628pt;}
.y8c{bottom:96.266628pt;}
.y79{bottom:98.986627pt;}
.y35{bottom:99.146627pt;}
.y14f{bottom:104.266625pt;}
.ya5{bottom:104.426625pt;}
.y7c{bottom:105.226891pt;}
.y1b6{bottom:109.226623pt;}
.yfc{bottom:109.386623pt;}
.y16{bottom:111.466622pt;}
.y175{bottom:111.786622pt;}
.y129{bottom:114.026621pt;}
.ye4{bottom:116.586620pt;}
.y115{bottom:116.586887pt;}
.y1b1{bottom:118.826619pt;}
.y56{bottom:119.146619pt;}
.y13a{bottom:119.466619pt;}
.y168{bottom:120.746618pt;}
.y8b{bottom:121.546618pt;}
.y78{bottom:124.266617pt;}
.y34{bottom:124.426617pt;}
.y14e{bottom:129.386615pt;}
.ya4{bottom:129.546615pt;}
.y157{bottom:130.666614pt;}
.y1b5{bottom:134.346613pt;}
.yfb{bottom:134.666613pt;}
.y15{bottom:136.586612pt;}
.y174{bottom:136.906612pt;}
.y128{bottom:139.146611pt;}
.ye3{bottom:141.706610pt;}
.y1b0{bottom:144.106609pt;}
.y55{bottom:144.426609pt;}
.y167{bottom:145.866608pt;}
.y8a{bottom:146.666608pt;}
.y77{bottom:149.386607pt;}
.y33{bottom:149.546607pt;}
.yc8{bottom:150.666606pt;}
.y90{bottom:153.066605pt;}
.y14d{bottom:154.666605pt;}
.ya3{bottom:154.826605pt;}
.yaf{bottom:159.466603pt;}
.yfa{bottom:159.786603pt;}
.y14{bottom:161.866602pt;}
.y173{bottom:162.186602pt;}
.y127{bottom:164.426601pt;}
.ye2{bottom:166.986600pt;}
.y54{bottom:169.546599pt;}
.y89{bottom:171.946598pt;}
.y76{bottom:174.666597pt;}
.y32{bottom:174.826597pt;}
.y139{bottom:179.786595pt;}
.ya2{bottom:179.946595pt;}
.yae{bottom:184.586593pt;}
.yf9{bottom:185.066593pt;}
.y13{bottom:186.986592pt;}
.y172{bottom:187.306592pt;}
.y126{bottom:189.546591pt;}
.yb1{bottom:190.826590pt;}
.ye1{bottom:192.106590pt;}
.y53{bottom:194.826589pt;}
.y88{bottom:197.066588pt;}
.y31{bottom:199.946587pt;}
.y1af{bottom:204.426585pt;}
.y138{bottom:205.066585pt;}
.ya1{bottom:205.226585pt;}
.y166{bottom:206.346584pt;}
.yad{bottom:209.866583pt;}
.y108{bottom:210.026583pt;}
.y12{bottom:212.266582pt;}
.y171{bottom:212.586582pt;}
.y125{bottom:214.826581pt;}
.ye0{bottom:217.386580pt;}
.yc5{bottom:219.946579pt;}
.y87{bottom:222.346578pt;}
.y30{bottom:225.226577pt;}
.y1b7{bottom:226.346576pt;}
.y1ae{bottom:229.706575pt;}
.y137{bottom:230.186575pt;}
.ya0{bottom:230.346575pt;}
.y165{bottom:231.466574pt;}
.yac{bottom:234.986573pt;}
.y107{bottom:235.146573pt;}
.y11{bottom:237.386572pt;}
.y170{bottom:237.706572pt;}
.y124{bottom:239.946571pt;}
.y10a{bottom:241.546570pt;}
.ydf{bottom:242.506570pt;}
.yc4{bottom:245.226569pt;}
.yf8{bottom:245.386569pt;}
.y2f{bottom:250.346567pt;}
.y114{bottom:252.586566pt;}
.y1ad{bottom:254.826565pt;}
.y136{bottom:255.466564pt;}
.y9f{bottom:255.626564pt;}
.y164{bottom:256.746564pt;}
.ya8{bottom:260.266563pt;}
.y106{bottom:260.426562pt;}
.y10{bottom:262.666562pt;}
.y123{bottom:265.226561pt;}
.y14c{bottom:265.386561pt;}
.yde{bottom:267.786560pt;}
.yc3{bottom:270.346559pt;}
.yf7{bottom:270.666558pt;}
.y191{bottom:275.146557pt;}
.y2e{bottom:275.626556pt;}
.y113{bottom:277.706556pt;}
.y1ac{bottom:280.106555pt;}
.y52{bottom:280.426554pt;}
.y135{bottom:280.586554pt;}
.y9e{bottom:280.746554pt;}
.y163{bottom:281.866554pt;}
.y75{bottom:285.386553pt;}
.y105{bottom:285.546552pt;}
.yf{bottom:287.786552pt;}
.y122{bottom:290.346551pt;}
.y14b{bottom:290.666550pt;}
.yc2{bottom:295.626548pt;}
.yf6{bottom:295.786548pt;}
.y150{bottom:296.906548pt;}
.y16f{bottom:298.186547pt;}
.y190{bottom:300.426546pt;}
.y2d{bottom:300.746546pt;}
.y86{bottom:302.986545pt;}
.y1ab{bottom:305.226545pt;}
.y51{bottom:305.546544pt;}
.y134{bottom:305.866544pt;}
.y74{bottom:310.666542pt;}
.y104{bottom:310.826542pt;}
.ye{bottom:313.066541pt;}
.y121{bottom:315.626540pt;}
.y14a{bottom:315.786540pt;}
.y7b{bottom:316.906807pt;}
.y1bb{bottom:320.106539pt;}
.yc1{bottom:320.746538pt;}
.yf5{bottom:321.066538pt;}
.y18f{bottom:325.546536pt;}
.y2c{bottom:326.026536pt;}
.ydd{bottom:328.106535pt;}
.y1aa{bottom:330.506534pt;}
.y50{bottom:330.826534pt;}
.y133{bottom:330.986534pt;}
.y38{bottom:332.266534pt;}
.y73{bottom:335.786532pt;}
.y103{bottom:335.946532pt;}
.yd{bottom:338.186531pt;}
.y1ba{bottom:340.106531pt;}
.y120{bottom:340.746530pt;}
.y149{bottom:341.066530pt;}
.yaa{bottom:342.026530pt;}
.y162{bottom:342.346530pt;}
.yc0{bottom:346.026528pt;}
.yf4{bottom:346.186528pt;}
.y155{bottom:347.306528pt;}
.y18e{bottom:350.826526pt;}
.y2b{bottom:351.146526pt;}
.ydc{bottom:353.386525pt;}
.y1a9{bottom:355.626524pt;}
.y4f{bottom:355.946524pt;}
.y72{bottom:361.066522pt;}
.y102{bottom:361.226522pt;}
.ycc{bottom:362.346522pt;}
.yc{bottom:363.466521pt;}
.y11f{bottom:366.026520pt;}
.y148{bottom:366.186520pt;}
.y161{bottom:367.466520pt;}
.ybf{bottom:371.146518pt;}
.y18d{bottom:375.946516pt;}
.y2a{bottom:376.426516pt;}
.ydb{bottom:378.506515pt;}
.y1a8{bottom:380.906514pt;}
.y4e{bottom:381.226514pt;}
.y71{bottom:386.186512pt;}
.y101{bottom:386.346512pt;}
.yb{bottom:388.586511pt;}
.y11e{bottom:391.146510pt;}
.y152{bottom:391.466510pt;}
.y9d{bottom:391.626510pt;}
.y8f{bottom:392.426510pt;}
.y160{bottom:392.746510pt;}
.ybe{bottom:396.426508pt;}
.y18c{bottom:401.226506pt;}
.yda{bottom:403.786505pt;}
.y16e{bottom:403.946505pt;}
.y4d{bottom:406.346504pt;}
.yf3{bottom:406.666504pt;}
.y70{bottom:411.466502pt;}
.ya{bottom:413.866501pt;}
.y11d{bottom:416.426500pt;}
.y151{bottom:416.586500pt;}
.y9c{bottom:416.746500pt;}
.y15f{bottom:417.866500pt;}
.ybd{bottom:421.546498pt;}
.ya7{bottom:423.146497pt;}
.y18b{bottom:426.346496pt;}
.y147{bottom:426.666496pt;}
.yd9{bottom:428.906495pt;}
.y4c{bottom:431.626494pt;}
.yf2{bottom:431.786494pt;}
.y6f{bottom:436.586492pt;}
.y29{bottom:436.746492pt;}
.y9{bottom:438.986491pt;}
.y1a7{bottom:441.226490pt;}
.y11c{bottom:441.546490pt;}
.y132{bottom:441.866490pt;}
.y9b{bottom:442.026490pt;}
.y15e{bottom:443.146489pt;}
.ybc{bottom:446.826488pt;}
.y18a{bottom:451.626486pt;}
.y146{bottom:451.786486pt;}
.yd8{bottom:454.186485pt;}
.y16d{bottom:454.346485pt;}
.y4b{bottom:456.746484pt;}
.yf1{bottom:457.066484pt;}
.y6e{bottom:461.866482pt;}
.y28{bottom:462.026482pt;}
.y1a6{bottom:466.506480pt;}
.y11b{bottom:466.826480pt;}
.y131{bottom:466.986480pt;}
.y9a{bottom:467.146480pt;}
.ybb{bottom:471.946478pt;}
.y13f{bottom:473.226477pt;}
.y189{bottom:476.746476pt;}
.y145{bottom:477.066476pt;}
.yd7{bottom:479.306475pt;}
.ycb{bottom:482.026474pt;}
.y6d{bottom:486.986472pt;}
.y1a5{bottom:491.626470pt;}
.y11a{bottom:491.946470pt;}
.y130{bottom:492.266470pt;}
.yba{bottom:497.226468pt;}
.y188{bottom:502.026466pt;}
.y144{bottom:502.186466pt;}
.y15d{bottom:503.466465pt;}
.yd6{bottom:504.586465pt;}
.yca{bottom:507.146464pt;}
.y6c{bottom:512.266462pt;}
.y1a4{bottom:516.906460pt;}
.y4a{bottom:517.226460pt;}
.yf0{bottom:517.386460pt;}
.y100{bottom:522.346458pt;}
.y187{bottom:527.146456pt;}
.y143{bottom:527.466456pt;}
.y99{bottom:527.626456pt;}
.yd5{bottom:529.706455pt;}
.yc9{bottom:532.426454pt;}
.y6b{bottom:537.386452pt;}
.y1a3{bottom:542.026450pt;}
.y49{bottom:542.346450pt;}
.yef{bottom:542.666450pt;}
.yff{bottom:547.626448pt;}
.y5a{bottom:548.746447pt;}
.y186{bottom:552.426446pt;}
.y142{bottom:552.586446pt;}
.y98{bottom:552.746446pt;}
.yd4{bottom:554.986445pt;}
.yb9{bottom:557.546444pt;}
.y6a{bottom:562.666442pt;}
.y16c{bottom:562.826442pt;}
.yc7{bottom:563.946441pt;}
.y1a2{bottom:567.306440pt;}
.y48{bottom:567.626440pt;}
.yee{bottom:567.786440pt;}
.y27{bottom:572.746438pt;}
.y185{bottom:577.546436pt;}
.y141{bottom:577.866436pt;}
.y97{bottom:578.026435pt;}
.yd3{bottom:580.106435pt;}
.yb8{bottom:582.826434pt;}
.y69{bottom:587.786432pt;}
.y1a1{bottom:592.426430pt;}
.y47{bottom:592.746430pt;}
.y12f{bottom:593.066429pt;}
.y1b8{bottom:597.866428pt;}
.y26{bottom:598.026427pt;}
.y8{bottom:600.266427pt;}
.y184{bottom:602.826426pt;}
.y140{bottom:602.986425pt;}
.y37{bottom:604.266425pt;}
.yd2{bottom:605.386425pt;}
.yb7{bottom:607.946423pt;}
.y15c{bottom:609.226423pt;}
.y68{bottom:613.066421pt;}
.y1a0{bottom:617.706420pt;}
.y46{bottom:618.026419pt;}
.y25{bottom:623.146417pt;}
.y183{bottom:627.946415pt;}
.yed{bottom:628.266415pt;}
.yd1{bottom:630.506414pt;}
.yb6{bottom:633.226413pt;}
.y15b{bottom:634.506413pt;}
.y7{bottom:635.466412pt;}
.y67{bottom:638.186411pt;}
.y96{bottom:638.346411pt;}
.y112{bottom:640.586410pt;}
.y19f{bottom:642.826410pt;}
.y45{bottom:643.146409pt;}
.y24{bottom:648.426407pt;}
.y182{bottom:653.226405pt;}
.yec{bottom:653.386405pt;}
.y178{bottom:654.666405pt;}
.yb5{bottom:658.346403pt;}
.y66{bottom:663.466401pt;}
.y95{bottom:663.626401pt;}
.y111{bottom:665.706400pt;}
.y19e{bottom:668.106399pt;}
.y44{bottom:668.426399pt;}
.ya9{bottom:669.706399pt;}
.y23{bottom:673.546397pt;}
.y12b{bottom:674.666397pt;}
.y6{bottom:675.786396pt;}
.y181{bottom:678.346395pt;}
.yeb{bottom:678.666395pt;}
.yb4{bottom:683.626393pt;}
.y1b9{bottom:684.746393pt;}
.y15a{bottom:684.906393pt;}
.y65{bottom:688.586391pt;}
.y110{bottom:690.986390pt;}
.y19d{bottom:693.226389pt;}
.y43{bottom:693.546389pt;}
.yfe{bottom:698.826387pt;}
.y180{bottom:703.626385pt;}
.y12e{bottom:703.786385pt;}
.yb3{bottom:708.746383pt;}
.yd0{bottom:711.146382pt;}
.y5{bottom:712.746382pt;}
.y64{bottom:713.866381pt;}
.y10f{bottom:716.106380pt;}
.y19c{bottom:718.506379pt;}
.y42{bottom:718.826379pt;}
.y154{bottom:720.106379pt;}
.yab{bottom:723.786377pt;}
.y94{bottom:723.946377pt;}
.y17f{bottom:728.746375pt;}
.y12d{bottom:729.066375pt;}
.y22{bottom:734.026373pt;}
.y63{bottom:738.986371pt;}
.y10e{bottom:741.386370pt;}
.y19b{bottom:743.626369pt;}
.y41{bottom:743.946369pt;}
.y85{bottom:749.066367pt;}
.y93{bottom:749.226367pt;}
.y17e{bottom:754.026365pt;}
.y12c{bottom:754.186365pt;}
.y8e{bottom:755.306365pt;}
.y21{bottom:759.146363pt;}
.y159{bottom:763.146361pt;}
.y62{bottom:764.266361pt;}
.y10d{bottom:766.506360pt;}
.y19a{bottom:768.906359pt;}
.y40{bottom:769.226359pt;}
.y84{bottom:774.186357pt;}
.y92{bottom:774.346357pt;}
.y17d{bottom:779.146355pt;}
.y20{bottom:784.426353pt;}
.y61{bottom:789.386351pt;}
.y10c{bottom:791.786350pt;}
.y158{bottom:793.866349pt;}
.y199{bottom:794.026349pt;}
.y3f{bottom:794.346349pt;}
.y4{bottom:794.666349pt;}
.y83{bottom:799.466347pt;}
.y59{bottom:800.746346pt;}
.y16b{bottom:803.946345pt;}
.y17c{bottom:804.426345pt;}
.y1f{bottom:809.546343pt;}
.y60{bottom:814.666341pt;}
.y3e{bottom:819.626339pt;}
.y13e{bottom:820.906338pt;}
.y82{bottom:824.586337pt;}
.y17b{bottom:829.546335pt;}
.y3{bottom:834.826333pt;}
.y194{bottom:835.946332pt;}
.yea{bottom:839.786331pt;}
.y3d{bottom:844.746329pt;}
.y81{bottom:849.866327pt;}
.ye6{bottom:851.146326pt;}
.y17a{bottom:854.826325pt;}
.y1e{bottom:859.946323pt;}
.ye9{bottom:865.066321pt;}
.y2{bottom:867.786320pt;}
.y3c{bottom:870.026319pt;}
.y10b{bottom:872.266318pt;}
.y80{bottom:874.986317pt;}
.y179{bottom:879.946315pt;}
.y1d{bottom:885.226313pt;}
.y3b{bottom:895.146309pt;}
.y198{bottom:899.786307pt;}
.y5f{bottom:900.266307pt;}
.y1{bottom:900.906306pt;}
.y119{bottom:905.226305pt;}
.y12a{bottom:911.466302pt;}
.y3a{bottom:920.426298pt;}
.y197{bottom:925.066297pt;}
.y5e{bottom:925.386297pt;}
.ycf{bottom:930.346295pt;}
.y1b4{bottom:931.306294pt;}
.y1c{bottom:945.546288pt;}
.y5d{bottom:950.666286pt;}
.yce{bottom:955.626284pt;}
.ye8{bottom:956.906284pt;}
.ye5{bottom:961.866282pt;}
.y91{bottom:970.826278pt;}
.y196{bottom:975.466276pt;}
.y5c{bottom:975.786276pt;}
.ycd{bottom:980.746274pt;}
.yb2{bottom:995.946268pt;}
.y5b{bottom:1001.066266pt;}
.y195{bottom:1003.306265pt;}
.y39{bottom:1006.026264pt;}
.y58{bottom:1012.266262pt;}
.y118{bottom:1012.266528pt;}
.y7f{bottom:1026.186256pt;}
.y1b{bottom:1031.146254pt;}
.y13d{bottom:1032.426254pt;}
.ye7{bottom:1051.466246pt;}
.y1a{bottom:1056.426244pt;}
.y109{bottom:1062.666242pt;}
.y18{bottom:1110.666222pt;}
.y7d{bottom:1110.666489pt;}
.hc{height:43.387483pt;}
.h6{height:50.878105pt;}
.h5{height:52.134354pt;}
.ha{height:52.244979pt;}
.h4{height:65.920286pt;}
.h2{height:65.953099pt;}
.h7{height:65.954165pt;}
.hb{height:81.269967pt;}
.h8{height:94.814962pt;}
.h9{height:108.359957pt;}
.h1{height:117.459328pt;}
.h3{height:131.840572pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:63.039975pt;}
.x2e{left:67.999973pt;}
.x1{left:77.919969pt;}
.x7{left:92.959963pt;}
.x3d{left:103.999958pt;}
.x2d{left:104.959958pt;}
.x15{left:107.839957pt;}
.x22{left:110.239956pt;}
.x3{left:111.839955pt;}
.x11{left:114.239954pt;}
.x2a{left:127.359949pt;}
.xd{left:129.279948pt;}
.x2c{left:135.839946pt;}
.x31{left:137.919945pt;}
.x10{left:140.959944pt;}
.x26{left:150.239940pt;}
.x18{left:151.679939pt;}
.x35{left:156.479937pt;}
.x29{left:160.159976pt;}
.xa{left:162.879935pt;}
.x3a{left:177.919929pt;}
.x25{left:182.399927pt;}
.x5{left:184.319926pt;}
.x23{left:189.439964pt;}
.x9{left:192.959923pt;}
.x3c{left:201.759919pt;}
.x34{left:211.359915pt;}
.x36{left:235.199906pt;}
.x2{left:246.719901pt;}
.x2b{left:256.319897pt;}
.x1c{left:263.039895pt;}
.x24{left:278.879928pt;}
.x39{left:303.039879pt;}
.xc{left:320.959872pt;}
.x4{left:334.399866pt;}
.x6{left:343.039863pt;}
.x2f{left:348.639861pt;}
.x30{left:398.079841pt;}
.x3e{left:411.039836pt;}
.x20{left:453.919818pt;}
.x3b{left:478.399809pt;}
.x21{left:498.239801pt;}
.xb{left:511.199796pt;}
.x14{left:529.599788pt;}
.x27{left:531.199788pt;}
.x17{left:532.799787pt;}
.xf{left:537.919785pt;}
.x37{left:544.639782pt;}
.x33{left:579.199768pt;}
.x1a{left:596.319801pt;}
.x1e{left:604.959758pt;}
.x19{left:612.319755pt;}
.x28{left:613.919754pt;}
.x1b{left:615.839794pt;}
.x16{left:619.359752pt;}
.x38{left:624.959750pt;}
.x1d{left:632.319747pt;}
.x12{left:633.599747pt;}
.x32{left:635.199746pt;}
.x1f{left:713.119715pt;}
.x13{left:714.559714pt;}
.xe{left:721.439711pt;}
}

