
    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_38e33ed0feba40b22c5e2284.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_f510dd3b95022a5667a0d18a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dd3dfb10e8e3232ee2535d61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8cc59700b820da8f56b8eecf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ef9d12312be4e4a693684bdb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010620px;}
.ls0{letter-spacing:0.010626px;}
.ls4{letter-spacing:0.021253px;}
.ls3{letter-spacing:0.500400px;}
.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;}
}
.ws2{word-spacing:-35.856000px;}
.ws3{word-spacing:-18.021253px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.058533px;}
._1{width:1.300847px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y62{bottom:110.103600px;}
.y41{bottom:115.863900px;}
.y83{bottom:116.766450px;}
.yb7{bottom:118.740300px;}
.yb3{bottom:126.123600px;}
.y61{bottom:127.201200px;}
.y60{bottom:134.044950px;}
.y1f{bottom:139.441800px;}
.y9c{bottom:141.422550px;}
.y5f{bottom:144.480900px;}
.y40{bottom:146.824800px;}
.y82{bottom:147.903150px;}
.yb2{bottom:157.266150px;}
.y5e{bottom:161.766000px;}
.y5d{bottom:168.603000px;}
.y1e{bottom:170.584350px;}
.y9b{bottom:172.565100px;}
.y3f{bottom:177.961500px;}
.y81{bottom:178.864050px;}
.y5c{bottom:179.766750px;}
.yb1{bottom:188.221200px;}
.y1d{bottom:201.545250px;}
.y9a{bottom:203.526000px;}
.y3e{bottom:208.922400px;}
.y80{bottom:210.006600px;}
.ybd{bottom:211.441500px;}
.yb0{bottom:219.363750px;}
.y5b{bottom:224.942550px;}
.y1c{bottom:232.681950px;}
.y99{bottom:234.481050px;}
.y3d{bottom:240.064950px;}
.y7f{bottom:240.961650px;}
.yaf{bottom:250.324650px;}
.y5a{bottom:256.085100px;}
.y1b{bottom:263.642850px;}
.y98{bottom:265.623600px;}
.y3c{bottom:271.025850px;}
.y7e{bottom:272.104200px;}
.yae{bottom:281.285550px;}
.y59{bottom:287.046000px;}
.y1a{bottom:294.422100px;}
.y97{bottom:296.584500px;}
.y3b{bottom:301.980900px;}
.y7d{bottom:303.065100px;}
.yad{bottom:312.422250px;}
.y58{bottom:318.182700px;}
.y19{bottom:323.045100px;}
.y96{bottom:327.721200px;}
.y3a{bottom:333.123450px;}
.y7c{bottom:334.201800px;}
.ycc{bottom:337.804650px;}
.yac{bottom:343.383150px;}
.y57{bottom:349.143600px;}
.y95{bottom:358.682100px;}
.y39{bottom:364.084350px;}
.y7b{bottom:365.162700px;}
.ycb{bottom:368.941350px;}
.y18{bottom:368.941650px;}
.yab{bottom:374.525700px;}
.y56{bottom:380.286150px;}
.y94{bottom:389.824650px;}
.y38{bottom:395.221050px;}
.y7a{bottom:396.305250px;}
.yca{bottom:399.902250px;}
.y17{bottom:400.084200px;}
.yaa{bottom:405.480750px;}
.y55{bottom:411.241200px;}
.y93{bottom:420.785550px;}
.y37{bottom:426.181950px;}
.y79{bottom:427.266150px;}
.yc9{bottom:431.044800px;}
.y16{bottom:431.045100px;}
.ya9{bottom:436.623300px;}
.y54{bottom:442.383750px;}
.y92{bottom:451.922250px;}
.y36{bottom:457.324500px;}
.y78{bottom:458.402850px;}
.yc8{bottom:462.005700px;}
.y15{bottom:462.006000px;}
.ya8{bottom:467.584200px;}
.y53{bottom:473.344650px;}
.y91{bottom:482.883150px;}
.y35{bottom:488.285400px;}
.y77{bottom:489.363750px;}
.y14{bottom:497.642700px;}
.yb6{bottom:497.642850px;}
.ya7{bottom:498.720900px;}
.yc7{bottom:500.701050px;}
.y52{bottom:511.864200px;}
.y90{bottom:514.025700px;}
.y34{bottom:519.422100px;}
.y76{bottom:520.506300px;}
.yb5{bottom:524.824500px;}
.ya6{bottom:529.681800px;}
.yc6{bottom:539.220600px;}
.y51{bottom:543.006750px;}
.y8f{bottom:544.980750px;}
.y33{bottom:550.383000px;}
.y75{bottom:551.461350px;}
.y13{bottom:554.343900px;}
.ya5{bottom:560.824350px;}
.yc5{bottom:570.181500px;}
.y50{bottom:573.961800px;}
.y8e{bottom:576.123300px;}
.y32{bottom:581.525550px;}
.y74{bottom:582.603900px;}
.ybc{bottom:584.584350px;}
.ya4{bottom:591.785250px;}
.y12{bottom:595.740450px;}
.yc4{bottom:601.324050px;}
.y4f{bottom:605.104350px;}
.y8d{bottom:607.084200px;}
.y31{bottom:612.480600px;}
.y73{bottom:613.564800px;}
.ybb{bottom:615.721050px;}
.ya3{bottom:622.921950px;}
.yc3{bottom:632.284950px;}
.y4e{bottom:636.065250px;}
.y11{bottom:637.142850px;}
.y8c{bottom:638.220900px;}
.y30{bottom:643.623150px;}
.y72{bottom:644.701500px;}
.yba{bottom:646.681950px;}
.ya2{bottom:653.882850px;}
.yc2{bottom:663.421650px;}
.y4d{bottom:667.201950px;}
.y9f{bottom:674.220750px;}
.y2f{bottom:674.584050px;}
.y71{bottom:675.662400px;}
.y8b{bottom:676.564650px;}
.yb9{bottom:677.824500px;}
.y10{bottom:678.545250px;}
.yc1{bottom:684.304500px;}
.ya1{bottom:685.025400px;}
.y4c{bottom:698.162850px;}
.yb8{bottom:704.824500px;}
.y9e{bottom:705.363300px;}
.ya0{bottom:705.544950px;}
.y2e{bottom:705.720750px;}
.y70{bottom:706.804950px;}
.yf{bottom:713.824500px;}
.yc0{bottom:714.720450px;}
.y8a{bottom:722.824350px;}
.y2d{bottom:736.681650px;}
.y4b{bottom:736.682400px;}
.y6f{bottom:737.765850px;}
.ybf{bottom:745.863000px;}
.ye{bottom:752.701500px;}
.y2c{bottom:767.824200px;}
.y4a{bottom:767.824950px;}
.y6e{bottom:768.902550px;}
.ybe{bottom:772.863000px;}
.yd{bottom:783.662400px;}
.y2b{bottom:798.785100px;}
.y49{bottom:798.785850px;}
.y6d{bottom:799.863450px;}
.yc{bottom:814.804950px;}
.y2a{bottom:829.921800px;}
.y48{bottom:829.922550px;}
.y6c{bottom:831.006000px;}
.yb{bottom:845.765850px;}
.y29{bottom:860.882700px;}
.y47{bottom:860.883450px;}
.y6b{bottom:861.961050px;}
.ya{bottom:876.902550px;}
.y28{bottom:892.025250px;}
.y46{bottom:892.026000px;}
.y6a{bottom:893.103600px;}
.y9{bottom:907.863450px;}
.yb4{bottom:922.622850px;}
.y45{bottom:922.623600px;}
.y27{bottom:922.980300px;}
.y69{bottom:924.064500px;}
.y8{bottom:938.824350px;}
.y9d{bottom:953.765400px;}
.y44{bottom:953.766150px;}
.y26{bottom:954.122850px;}
.y68{bottom:955.025400px;}
.y7{bottom:969.961050px;}
.y89{bottom:970.143000px;}
.y25{bottom:985.083750px;}
.y43{bottom:985.084500px;}
.y67{bottom:986.162100px;}
.y42{bottom:993.363000px;}
.y6{bottom:1000.921950px;}
.y88{bottom:1001.103900px;}
.y24{bottom:1016.220450px;}
.y66{bottom:1017.123000px;}
.y5{bottom:1029.006000px;}
.y87{bottom:1032.240600px;}
.y23{bottom:1047.181350px;}
.y65{bottom:1063.201200px;}
.y86{bottom:1063.201500px;}
.y4{bottom:1063.922250px;}
.y22{bottom:1078.323900px;}
.y64{bottom:1094.162100px;}
.y2{bottom:1096.142100px;}
.y3{bottom:1096.143000px;}
.y21{bottom:1109.284800px;}
.y85{bottom:1109.284950px;}
.y1{bottom:1129.980000px;}
.y63{bottom:1140.064500px;}
.y84{bottom:1140.240000px;}
.y20{bottom:1140.421500px;}
.h6{height:27.014766px;}
.h5{height:33.518320px;}
.h9{height:39.830273px;}
.h3{height:40.909922px;}
.h7{height:41.522695px;}
.h2{height:49.289062px;}
.h8{height:49.992188px;}
.h4{height:50.027344px;}
.h1{height:57.668203px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:107.994150px;}
.xb{left:112.857450px;}
.x3{left:128.875883px;}
.xc{left:134.994150px;}
.x1{left:140.396550px;}
.x7{left:161.996770px;}
.x10{left:367.558500px;}
.x11{left:380.877000px;}
.xe{left:382.494000px;}
.xd{left:389.338500px;}
.x8{left:418.318500px;}
.xf{left:422.097000px;}
.x9{left:424.435500px;}
.x4{left:542.877000px;}
.xa{left:548.097000px;}
.x5{left:625.136779px;}
.x2{left:752.038500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009440pt;}
.ls0{letter-spacing:0.009446pt;}
.ls4{letter-spacing:0.018891pt;}
.ls3{letter-spacing:0.444800pt;}
.ws2{word-spacing:-31.872000pt;}
.ws3{word-spacing:-16.018891pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-0.940918pt;}
._1{width:1.156309pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:97.869867pt;}
.y41{bottom:102.990133pt;}
.y83{bottom:103.792400pt;}
.yb7{bottom:105.546933pt;}
.yb3{bottom:112.109867pt;}
.y61{bottom:113.067733pt;}
.y60{bottom:119.151067pt;}
.y1f{bottom:123.948267pt;}
.y9c{bottom:125.708933pt;}
.y5f{bottom:128.427467pt;}
.y40{bottom:130.510933pt;}
.y82{bottom:131.469467pt;}
.yb2{bottom:139.792133pt;}
.y5e{bottom:143.792000pt;}
.y5d{bottom:149.869333pt;}
.y1e{bottom:151.630533pt;}
.y9b{bottom:153.391200pt;}
.y3f{bottom:158.188000pt;}
.y81{bottom:158.990267pt;}
.y5c{bottom:159.792667pt;}
.yb1{bottom:167.307733pt;}
.y1d{bottom:179.151333pt;}
.y9a{bottom:180.912000pt;}
.y3e{bottom:185.708800pt;}
.y80{bottom:186.672533pt;}
.ybd{bottom:187.948000pt;}
.yb0{bottom:194.990000pt;}
.y5b{bottom:199.948933pt;}
.y1c{bottom:206.828400pt;}
.y99{bottom:208.427600pt;}
.y3d{bottom:213.391067pt;}
.y7f{bottom:214.188133pt;}
.yaf{bottom:222.510800pt;}
.y5a{bottom:227.631200pt;}
.y1b{bottom:234.349200pt;}
.y98{bottom:236.109867pt;}
.y3c{bottom:240.911867pt;}
.y7e{bottom:241.870400pt;}
.yae{bottom:250.031600pt;}
.y59{bottom:255.152000pt;}
.y1a{bottom:261.708533pt;}
.y97{bottom:263.630667pt;}
.y3b{bottom:268.427467pt;}
.y7d{bottom:269.391200pt;}
.yad{bottom:277.708667pt;}
.y58{bottom:282.829067pt;}
.y19{bottom:287.151200pt;}
.y96{bottom:291.307733pt;}
.y3a{bottom:296.109733pt;}
.y7c{bottom:297.068267pt;}
.ycc{bottom:300.270800pt;}
.yac{bottom:305.229467pt;}
.y57{bottom:310.349867pt;}
.y95{bottom:318.828533pt;}
.y39{bottom:323.630533pt;}
.y7b{bottom:324.589067pt;}
.ycb{bottom:327.947867pt;}
.y18{bottom:327.948133pt;}
.yab{bottom:332.911733pt;}
.y56{bottom:338.032133pt;}
.y94{bottom:346.510800pt;}
.y38{bottom:351.307600pt;}
.y7a{bottom:352.271333pt;}
.yca{bottom:355.468667pt;}
.y17{bottom:355.630400pt;}
.yaa{bottom:360.427333pt;}
.y55{bottom:365.547733pt;}
.y93{bottom:374.031600pt;}
.y37{bottom:378.828400pt;}
.y79{bottom:379.792133pt;}
.yc9{bottom:383.150933pt;}
.y16{bottom:383.151200pt;}
.ya9{bottom:388.109600pt;}
.y54{bottom:393.230000pt;}
.y92{bottom:401.708667pt;}
.y36{bottom:406.510667pt;}
.y78{bottom:407.469200pt;}
.yc8{bottom:410.671733pt;}
.y15{bottom:410.672000pt;}
.ya8{bottom:415.630400pt;}
.y53{bottom:420.750800pt;}
.y91{bottom:429.229467pt;}
.y35{bottom:434.031467pt;}
.y77{bottom:434.990000pt;}
.y14{bottom:442.349067pt;}
.yb6{bottom:442.349200pt;}
.ya7{bottom:443.307467pt;}
.yc7{bottom:445.067600pt;}
.y52{bottom:454.990400pt;}
.y90{bottom:456.911733pt;}
.y34{bottom:461.708533pt;}
.y76{bottom:462.672267pt;}
.yb5{bottom:466.510667pt;}
.ya6{bottom:470.828267pt;}
.yc6{bottom:479.307200pt;}
.y51{bottom:482.672667pt;}
.y8f{bottom:484.427333pt;}
.y33{bottom:489.229333pt;}
.y75{bottom:490.187867pt;}
.y13{bottom:492.750133pt;}
.ya5{bottom:498.510533pt;}
.yc5{bottom:506.828000pt;}
.y50{bottom:510.188267pt;}
.y8e{bottom:512.109600pt;}
.y32{bottom:516.911600pt;}
.y74{bottom:517.870133pt;}
.ybc{bottom:519.630533pt;}
.ya4{bottom:526.031333pt;}
.y12{bottom:529.547067pt;}
.yc4{bottom:534.510267pt;}
.y4f{bottom:537.870533pt;}
.y8d{bottom:539.630400pt;}
.y31{bottom:544.427200pt;}
.y73{bottom:545.390933pt;}
.ybb{bottom:547.307600pt;}
.ya3{bottom:553.708400pt;}
.yc3{bottom:562.031067pt;}
.y4e{bottom:565.391333pt;}
.y11{bottom:566.349200pt;}
.y8c{bottom:567.307467pt;}
.y30{bottom:572.109467pt;}
.y72{bottom:573.068000pt;}
.yba{bottom:574.828400pt;}
.ya2{bottom:581.229200pt;}
.yc2{bottom:589.708133pt;}
.y4d{bottom:593.068400pt;}
.y9f{bottom:599.307333pt;}
.y2f{bottom:599.630267pt;}
.y71{bottom:600.588800pt;}
.y8b{bottom:601.390800pt;}
.yb9{bottom:602.510667pt;}
.y10{bottom:603.151333pt;}
.yc1{bottom:608.270667pt;}
.ya1{bottom:608.911467pt;}
.y4c{bottom:620.589200pt;}
.yb8{bottom:626.510667pt;}
.y9e{bottom:626.989600pt;}
.ya0{bottom:627.151067pt;}
.y2e{bottom:627.307333pt;}
.y70{bottom:628.271067pt;}
.yf{bottom:634.510667pt;}
.yc0{bottom:635.307067pt;}
.y8a{bottom:642.510533pt;}
.y2d{bottom:654.828133pt;}
.y4b{bottom:654.828800pt;}
.y6f{bottom:655.791867pt;}
.ybf{bottom:662.989333pt;}
.ye{bottom:669.068000pt;}
.y2c{bottom:682.510400pt;}
.y4a{bottom:682.511067pt;}
.y6e{bottom:683.468933pt;}
.ybe{bottom:686.989333pt;}
.yd{bottom:696.588800pt;}
.y2b{bottom:710.031200pt;}
.y49{bottom:710.031867pt;}
.y6d{bottom:710.989733pt;}
.yc{bottom:724.271067pt;}
.y2a{bottom:737.708267pt;}
.y48{bottom:737.708933pt;}
.y6c{bottom:738.672000pt;}
.yb{bottom:751.791867pt;}
.y29{bottom:765.229067pt;}
.y47{bottom:765.229733pt;}
.y6b{bottom:766.187600pt;}
.ya{bottom:779.468933pt;}
.y28{bottom:792.911333pt;}
.y46{bottom:792.912000pt;}
.y6a{bottom:793.869867pt;}
.y9{bottom:806.989733pt;}
.yb4{bottom:820.109200pt;}
.y45{bottom:820.109867pt;}
.y27{bottom:820.426933pt;}
.y69{bottom:821.390667pt;}
.y8{bottom:834.510533pt;}
.y9d{bottom:847.791467pt;}
.y44{bottom:847.792133pt;}
.y26{bottom:848.109200pt;}
.y68{bottom:848.911467pt;}
.y7{bottom:862.187600pt;}
.y89{bottom:862.349333pt;}
.y25{bottom:875.630000pt;}
.y43{bottom:875.630667pt;}
.y67{bottom:876.588533pt;}
.y42{bottom:882.989333pt;}
.y6{bottom:889.708400pt;}
.y88{bottom:889.870133pt;}
.y24{bottom:903.307067pt;}
.y66{bottom:904.109333pt;}
.y5{bottom:914.672000pt;}
.y87{bottom:917.547200pt;}
.y23{bottom:930.827867pt;}
.y65{bottom:945.067733pt;}
.y86{bottom:945.068000pt;}
.y4{bottom:945.708667pt;}
.y22{bottom:958.510133pt;}
.y64{bottom:972.588533pt;}
.y2{bottom:974.348533pt;}
.y3{bottom:974.349333pt;}
.y21{bottom:986.030933pt;}
.y85{bottom:986.031067pt;}
.y1{bottom:1004.426667pt;}
.y63{bottom:1013.390667pt;}
.y84{bottom:1013.546667pt;}
.y20{bottom:1013.708000pt;}
.h6{height:24.013125pt;}
.h5{height:29.794062pt;}
.h9{height:35.404688pt;}
.h3{height:36.364375pt;}
.h7{height:36.909063pt;}
.h2{height:43.812500pt;}
.h8{height:44.437500pt;}
.h4{height:44.468750pt;}
.h1{height:51.260625pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:95.994800pt;}
.xb{left:100.317733pt;}
.x3{left:114.556340pt;}
.xc{left:119.994800pt;}
.x1{left:124.796933pt;}
.x7{left:143.997129pt;}
.x10{left:326.718667pt;}
.x11{left:338.557333pt;}
.xe{left:339.994667pt;}
.xd{left:346.078667pt;}
.x8{left:371.838667pt;}
.xf{left:375.197333pt;}
.x9{left:377.276000pt;}
.x4{left:482.557333pt;}
.xa{left:487.197333pt;}
.x5{left:555.677137pt;}
.x2{left:668.478667pt;}
}

