
    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_2bfada2fb4bd69519cbabf54.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ee6c970ec858e35ebfc20da0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8cc8910e87c3be20a59c31ca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_895b343e036cea0bd289bd5d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_55c8dab271765a28a1671745.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_8b24aded0bf0e85711179d60.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_346b3233c5266801e89a5636.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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:ff8;src:url('chunks/assets/font_84193df975f1799c319b539a.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:135.489600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:6.952705px;}
.ls2{letter-spacing:11.289332px;}
.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;}
}
.ws4{word-spacing:-68.313719px;}
.ws2{word-spacing:-28.227000px;}
.ws6{word-spacing:-15.694212px;}
.ws8{word-spacing:-14.124791px;}
.ws5{word-spacing:-14.113500px;}
.ws7{word-spacing:-13.340080px;}
.ws3{word-spacing:-12.555370px;}
.ws1{word-spacing:-10.985948px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-14.818498px;}
._c{margin-left:-5.975938px;}
._d{margin-left:-4.476802px;}
._7{margin-left:-3.404176px;}
._4{margin-left:-2.032344px;}
._11{margin-left:-1.016172px;}
._a{width:1.857337px;}
._2{width:3.279977px;}
._0{width:4.781654px;}
._1{width:6.204295px;}
._6{width:8.039050px;}
._5{width:9.185461px;}
._8{width:10.611342px;}
._b{width:11.739620px;}
._9{width:12.758604px;}
._3{width:14.113500px;}
._f{width:16.700956px;}
._e{width:18.516912px;}
.fc2{color:rgb(51,50,50);}
.fc4{color:rgb(144,142,142);}
.fc1{color:rgb(131,129,129);}
.fc5{color:rgb(35,31,32);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.517800px;}
.fs6{font-size:45.163200px;}
.fs9{font-size:47.985900px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:50.808600px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.454000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:73.390200px;}
.fs4{font-size:112.908000px;}
.fs8{font-size:245.732802px;}
.y0{bottom:0.000000px;}
.y13{bottom:40.500000px;}
.y10{bottom:42.000000px;}
.y12{bottom:60.750000px;}
.yc5{bottom:62.501183px;}
.yf{bottom:66.000000px;}
.y117{bottom:77.570407px;}
.ybd{bottom:79.437383px;}
.y11{bottom:81.000000px;}
.y5f{bottom:87.438750px;}
.y104{bottom:88.372301px;}
.ye{bottom:90.000000px;}
.y145{bottom:94.067197px;}
.y84{bottom:94.506607px;}
.ybc{bottom:96.373583px;}
.y125{bottom:98.240630px;}
.y34{bottom:100.928687px;}
.y5e{bottom:104.374950px;}
.y103{bottom:105.308494px;}
.y83{bottom:111.442807px;}
.ybb{bottom:113.309783px;}
.yd{bottom:114.000000px;}
.y124{bottom:115.176830px;}
.y33{bottom:117.864887px;}
.y5d{bottom:121.311150px;}
.y102{bottom:122.244638px;}
.y14{bottom:127.390050px;}
.y82{bottom:128.379007px;}
.yba{bottom:130.245983px;}
.y123{bottom:132.112987px;}
.y32{bottom:134.801087px;}
.y5c{bottom:138.247209px;}
.y6a{bottom:138.247350px;}
.y101{bottom:139.180901px;}
.y144{bottom:143.942302px;}
.y81{bottom:145.315207px;}
.yb9{bottom:147.182183px;}
.y31{bottom:151.737287px;}
.y69{bottom:155.183409px;}
.y95{bottom:155.183550px;}
.y100{bottom:156.117101px;}
.y122{bottom:157.050526px;}
.y143{bottom:160.878502px;}
.y80{bottom:162.251407px;}
.y5b{bottom:163.184916px;}
.yc4{bottom:164.118242px;}
.y30{bottom:168.673487px;}
.y94{bottom:172.119750px;}
.yff{bottom:173.053245px;}
.y121{bottom:173.986768px;}
.y142{bottom:177.814702px;}
.y7f{bottom:179.187607px;}
.y5a{bottom:180.121116px;}
.y2f{bottom:185.609687px;}
.y93{bottom:189.055809px;}
.yb8{bottom:189.055950px;}
.yfe{bottom:189.989501px;}
.y120{bottom:190.922869px;}
.y141{bottom:194.750902px;}
.y7e{bottom:196.123807px;}
.y59{bottom:197.057316px;}
.y2e{bottom:202.545887px;}
.yb7{bottom:205.992150px;}
.yfd{bottom:206.925645px;}
.y140{bottom:211.687102px;}
.y116{bottom:213.059866px;}
.y7d{bottom:213.060007px;}
.ye2{bottom:213.993509px;}
.y58{bottom:213.993516px;}
.y11f{bottom:215.860535px;}
.y2c{bottom:219.482087px;}
.yb6{bottom:222.928350px;}
.y13f{bottom:228.623302px;}
.y7c{bottom:229.996207px;}
.y57{bottom:230.929716px;}
.ye1{bottom:230.929773px;}
.yfc{bottom:231.863183px;}
.y11e{bottom:232.796692px;}
.y2d{bottom:236.418287px;}
.y115{bottom:237.997574px;}
.yb5{bottom:239.864550px;}
.y13e{bottom:245.559502px;}
.y7b{bottom:246.932407px;}
.y56{bottom:247.865916px;}
.ye0{bottom:247.865973px;}
.yfb{bottom:248.799369px;}
.y114{bottom:254.933774px;}
.yb4{bottom:256.800750px;}
.y11d{bottom:257.734245px;}
.y13d{bottom:262.495702px;}
.y7a{bottom:263.868593px;}
.y55{bottom:264.802116px;}
.ydf{bottom:264.802173px;}
.yfa{bottom:265.735569px;}
.y113{bottom:271.869974px;}
.yc3{bottom:273.736809px;}
.yb3{bottom:273.736950px;}
.y2b{bottom:278.292054px;}
.y79{bottom:280.804793px;}
.y54{bottom:281.738316px;}
.yde{bottom:281.738373px;}
.yf9{bottom:282.671769px;}
.y13c{bottom:287.433269px;}
.y112{bottom:288.806174px;}
.yb2{bottom:290.673150px;}
.y78{bottom:297.740993px;}
.y53{bottom:298.674516px;}
.yf8{bottom:299.607969px;}
.y111{bottom:305.742374px;}
.yb1{bottom:307.609350px;}
.y77{bottom:314.677193px;}
.y52{bottom:315.610716px;}
.yf7{bottom:316.544042px;}
.y110{bottom:322.678574px;}
.ydd{bottom:323.612055px;}
.yb0{bottom:324.545550px;}
.y2a{bottom:326.755780px;}
.y9e{bottom:331.613393px;}
.y51{bottom:332.546916px;}
.y13b{bottom:337.308388px;}
.y10f{bottom:339.614774px;}
.y76{bottom:339.614830px;}
.ydc{bottom:340.548255px;}
.yaf{bottom:341.481580px;}
.yf6{bottom:341.481750px;}
.y29{bottom:342.280673px;}
.y9d{bottom:348.549607px;}
.y68{bottom:349.482905px;}
.y92{bottom:349.482919px;}
.y50{bottom:349.483088px;}
.y11c{bottom:349.483116px;}
.y13a{bottom:354.244545px;}
.y10e{bottom:356.550945px;}
.y75{bottom:356.551002px;}
.ydb{bottom:357.484426px;}
.yf5{bottom:358.417950px;}
.y9c{bottom:365.485807px;}
.y4f{bottom:366.419119px;}
.yae{bottom:366.419288px;}
.y10d{bottom:373.486990px;}
.y74{bottom:373.487145px;}
.y67{bottom:374.420612px;}
.y91{bottom:374.420626px;}
.yf4{bottom:375.354150px;}
.y139{bottom:379.182168px;}
.y28{bottom:381.331711px;}
.y9b{bottom:382.422007px;}
.yad{bottom:383.355488px;}
.yc{bottom:387.750000px;}
.y73{bottom:390.423402px;}
.y4e{bottom:391.356812px;}
.y90{bottom:391.356826px;}
.yf3{bottom:392.290350px;}
.y138{bottom:396.118241px;}
.y27{bottom:396.856561px;}
.y10c{bottom:398.424698px;}
.y9a{bottom:399.358207px;}
.yac{bottom:400.291688px;}
.y72{bottom:407.359602px;}
.y8f{bottom:408.293026px;}
.yf2{bottom:409.226550px;}
.y26{bottom:412.381411px;}
.y10b{bottom:415.360898px;}
.y99{bottom:416.294407px;}
.yc2{bottom:417.227719px;}
.yab{bottom:417.227888px;}
.y137{bottom:421.055864px;}
.y66{bottom:424.295745px;}
.y71{bottom:424.295802px;}
.y8e{bottom:425.229226px;}
.y25{bottom:427.906261px;}
.y10a{bottom:432.297098px;}
.y98{bottom:433.230438px;}
.yc1{bottom:434.163919px;}
.yaa{bottom:434.164088px;}
.yf1{bottom:434.164144px;}
.y136{bottom:437.991980px;}
.y4d{bottom:441.231945px;}
.y70{bottom:441.232002px;}
.yda{bottom:442.165299px;}
.y8d{bottom:442.165426px;}
.y24{bottom:443.431111px;}
.y109{bottom:449.233298px;}
.y11b{bottom:451.100119px;}
.ya9{bottom:451.100288px;}
.yf0{bottom:451.100344px;}
.yb{bottom:453.750000px;}
.y4c{bottom:458.168145px;}
.y8c{bottom:459.101626px;}
.y135{bottom:462.929603px;}
.y108{bottom:466.169498px;}
.y23{bottom:466.957299px;}
.yd9{bottom:467.103007px;}
.ya8{bottom:468.036305px;}
.yef{bottom:468.036488px;}
.ya{bottom:474.000000px;}
.y4b{bottom:475.104345px;}
.y11a{bottom:476.037812px;}
.y8b{bottom:476.037826px;}
.y6f{bottom:483.105698px;}
.yd8{bottom:484.039207px;}
.y4a{bottom:492.040545px;}
.ya7{bottom:492.974012px;}
.y8a{bottom:492.974026px;}
.y9{bottom:494.250000px;}
.y6e{bottom:500.041898px;}
.yd7{bottom:500.975407px;}
.y49{bottom:508.976745px;}
.y89{bottom:509.910226px;}
.y134{bottom:512.804651px;}
.y22{bottom:514.009718px;}
.y8{bottom:514.500000px;}
.y6d{bottom:516.978098px;}
.yd6{bottom:517.911607px;}
.y48{bottom:525.912790px;}
.y65{bottom:525.912945px;}
.yee{bottom:526.846299px;}
.y88{bottom:526.846426px;}
.y21{bottom:529.534568px;}
.y6c{bottom:533.914298px;}
.y7{bottom:534.750000px;}
.yd5{bottom:534.847807px;}
.y133{bottom:537.742274px;}
.y64{bottom:542.849145px;}
.y87{bottom:543.782457px;}
.yed{bottom:543.782499px;}
.yc0{bottom:543.782626px;}
.y20{bottom:545.059418px;}
.y47{bottom:550.850498px;}
.yd4{bottom:551.784007px;}
.y132{bottom:554.678474px;}
.y63{bottom:559.785345px;}
.y1f{bottom:560.584268px;}
.y86{bottom:560.718657px;}
.ybf{bottom:560.718699px;}
.y46{bottom:567.786698px;}
.yd3{bottom:568.720207px;}
.y1e{bottom:576.109118px;}
.y97{bottom:576.721545px;}
.y131{bottom:579.616097px;}
.y45{bottom:584.722898px;}
.yd2{bottom:585.656238px;}
.y85{bottom:585.656365px;}
.yec{bottom:585.656407px;}
.y1d{bottom:591.633982px;}
.y96{bottom:593.657590px;}
.ya6{bottom:593.657745px;}
.y130{bottom:596.552255px;}
.y44{bottom:601.659098px;}
.yeb{bottom:602.592607px;}
.ya5{bottom:610.593790px;}
.yd1{bottom:610.593945px;}
.y1{bottom:613.500000px;}
.y1c{bottom:615.160171px;}
.y43{bottom:618.595298px;}
.y6{bottom:619.500000px;}
.yea{bottom:619.528807px;}
.y12f{bottom:621.489793px;}
.yd0{bottom:627.530145px;}
.y42{bottom:635.531498px;}
.ye9{bottom:636.465007px;}
.y12e{bottom:638.425908px;}
.y5{bottom:639.750000px;}
.ycf{bottom:644.466345px;}
.y107{bottom:652.467571px;}
.y41{bottom:652.467698px;}
.y4{bottom:660.000000px;}
.yce{bottom:661.402545px;}
.ye8{bottom:661.402602px;}
.y12d{bottom:663.363531px;}
.y1b{bottom:663.623940px;}
.y40{bottom:669.403898px;}
.y106{bottom:677.405278px;}
.ycd{bottom:678.338745px;}
.y3{bottom:680.250000px;}
.y1a{bottom:680.560140px;}
.y3f{bottom:686.339971px;}
.y62{bottom:686.340098px;}
.y119{bottom:686.340154px;}
.y105{bottom:694.341478px;}
.ycc{bottom:695.274945px;}
.ye7{bottom:695.275002px;}
.y19{bottom:697.496340px;}
.y61{bottom:703.276171px;}
.ya4{bottom:703.276298px;}
.y118{bottom:703.276354px;}
.y2{bottom:704.250000px;}
.y3e{bottom:711.277678px;}
.ycb{bottom:712.211145px;}
.ye6{bottom:712.211244px;}
.y12c{bottom:713.238650px;}
.y6b{bottom:720.212371px;}
.ya3{bottom:720.212498px;}
.y3d{bottom:728.213878px;}
.ye5{bottom:729.147388px;}
.y12b{bottom:730.174808px;}
.ya2{bottom:737.148698px;}
.yca{bottom:737.148754px;}
.y3c{bottom:745.150078px;}
.ybe{bottom:754.084771px;}
.ya1{bottom:754.084898px;}
.yc9{bottom:754.084954px;}
.y12a{bottom:755.112431px;}
.y18{bottom:758.889782px;}
.y3b{bottom:762.086278px;}
.ya0{bottom:771.021098px;}
.yc8{bottom:771.021154px;}
.y129{bottom:772.048589px;}
.y3a{bottom:779.022478px;}
.y9f{bottom:787.957171px;}
.ye4{bottom:787.957298px;}
.yc7{bottom:787.957354px;}
.y17{bottom:789.939765px;}
.y39{bottom:795.958678px;}
.y128{bottom:796.986212px;}
.ye3{bottom:804.893371px;}
.yc6{bottom:804.893498px;}
.y38{bottom:812.894878px;}
.y127{bottom:813.922412px;}
.y16{bottom:820.989465px;}
.y37{bottom:829.831078px;}
.y126{bottom:830.858569px;}
.y35{bottom:879.209797px;}
.y60{bottom:879.209868px;}
.y36{bottom:879.280435px;}
.y15{bottom:918.864738px;}
.h6{height:35.716527px;}
.hf{height:39.198041px;}
.h4{height:39.313477px;}
.ha{height:40.377841px;}
.h23{height:40.488103px;}
.hb{height:40.818888px;}
.h18{height:43.018610px;}
.h21{height:45.425072px;}
.h1d{height:45.548947px;}
.h1f{height:45.549116px;}
.h1c{height:45.921249px;}
.h1e{height:45.921475px;}
.h22{height:45.921532px;}
.h20{height:45.921588px;}
.h3{height:50.062500px;}
.h16{height:50.472302px;}
.he{height:50.610129px;}
.h14{height:50.610242px;}
.h10{height:50.610637px;}
.h15{height:50.610693px;}
.h11{height:50.610750px;}
.h13{height:50.610806px;}
.h1a{height:50.610863px;}
.h19{height:50.610919px;}
.h17{height:50.610976px;}
.hc{height:51.023610px;}
.h12{height:51.023667px;}
.h1b{height:51.023780px;}
.h2{height:56.320312px;}
.h9{height:64.395600px;}
.h1{height:75.093750px;}
.h7{height:100.283033px;}
.h8{height:100.284162px;}
.hd{height:220.295617px;}
.h5{height:960.141391px;}
.h0{height:1188.000000px;}
.w1{width:680.129466px;}
.w2{width:680.129509px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:51.000000px;}
.x13{left:80.023545px;}
.xe{left:100.466061px;}
.xc{left:106.380000px;}
.x14{left:120.998987px;}
.x17{left:140.033695px;}
.x15{left:187.903568px;}
.x4{left:209.520000px;}
.x10{left:259.064103px;}
.x11{left:278.880530px;}
.x12{left:283.508784px;}
.xf{left:285.436914px;}
.x7{left:292.425000px;}
.xb{left:336.540000px;}
.x5{left:355.440000px;}
.xa{left:397.305000px;}
.x3{left:399.735000px;}
.x6{left:419.985000px;}
.xd{left:434.549358px;}
.x1{left:452.985000px;}
.x2{left:495.000000px;}
.x18{left:578.935784px;}
.x16{left:579.983232px;}
.x9{left:653.175000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:120.435200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:6.180182pt;}
.ls2{letter-spacing:10.034962pt;}
.ws4{word-spacing:-60.723306pt;}
.ws2{word-spacing:-25.090667pt;}
.ws6{word-spacing:-13.950411pt;}
.ws8{word-spacing:-12.555370pt;}
.ws5{word-spacing:-12.545333pt;}
.ws7{word-spacing:-11.857849pt;}
.ws3{word-spacing:-11.160329pt;}
.ws1{word-spacing:-9.765287pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-13.171998pt;}
._c{margin-left:-5.311945pt;}
._d{margin-left:-3.979380pt;}
._7{margin-left:-3.025934pt;}
._4{margin-left:-1.806528pt;}
._11{margin-left:-0.903264pt;}
._a{width:1.650966pt;}
._2{width:2.915535pt;}
._0{width:4.250359pt;}
._1{width:5.514929pt;}
._6{width:7.145822pt;}
._5{width:8.164854pt;}
._8{width:9.432304pt;}
._b{width:10.435218pt;}
._9{width:11.340981pt;}
._3{width:12.545333pt;}
._f{width:14.845294pt;}
._e{width:16.459477pt;}
.fs3{font-size:35.126933pt;}
.fs6{font-size:40.145067pt;}
.fs9{font-size:42.654133pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:45.163200pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.181333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:65.235733pt;}
.fs4{font-size:100.362667pt;}
.fs8{font-size:218.429157pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:36.000000pt;}
.y10{bottom:37.333333pt;}
.y12{bottom:54.000000pt;}
.yc5{bottom:55.556607pt;}
.yf{bottom:58.666667pt;}
.y117{bottom:68.951473pt;}
.ybd{bottom:70.611007pt;}
.y11{bottom:72.000000pt;}
.y5f{bottom:77.723333pt;}
.y104{bottom:78.553157pt;}
.ye{bottom:80.000000pt;}
.y145{bottom:83.615286pt;}
.y84{bottom:84.005873pt;}
.ybc{bottom:85.665407pt;}
.y125{bottom:87.325004pt;}
.y34{bottom:89.714388pt;}
.y5e{bottom:92.777733pt;}
.y103{bottom:93.607550pt;}
.y83{bottom:99.060273pt;}
.ybb{bottom:100.719807pt;}
.yd{bottom:101.333333pt;}
.y124{bottom:102.379404pt;}
.y33{bottom:104.768788pt;}
.y5d{bottom:107.832133pt;}
.y102{bottom:108.661900pt;}
.y14{bottom:113.235600pt;}
.y82{bottom:114.114673pt;}
.yba{bottom:115.774207pt;}
.y123{bottom:117.433767pt;}
.y32{bottom:119.823188pt;}
.y5c{bottom:122.886408pt;}
.y6a{bottom:122.886533pt;}
.y101{bottom:123.716357pt;}
.y144{bottom:127.948713pt;}
.y81{bottom:129.169073pt;}
.yb9{bottom:130.828607pt;}
.y31{bottom:134.877588pt;}
.y69{bottom:137.940808pt;}
.y95{bottom:137.940933pt;}
.y100{bottom:138.770757pt;}
.y122{bottom:139.600467pt;}
.y143{bottom:143.003113pt;}
.y80{bottom:144.223473pt;}
.y5b{bottom:145.053259pt;}
.yc4{bottom:145.882882pt;}
.y30{bottom:149.931988pt;}
.y94{bottom:152.995333pt;}
.yff{bottom:153.825106pt;}
.y121{bottom:154.654905pt;}
.y142{bottom:158.057513pt;}
.y7f{bottom:159.277873pt;}
.y5a{bottom:160.107659pt;}
.y2f{bottom:164.986388pt;}
.y93{bottom:168.049608pt;}
.yb8{bottom:168.049733pt;}
.yfe{bottom:168.879557pt;}
.y120{bottom:169.709217pt;}
.y141{bottom:173.111913pt;}
.y7e{bottom:174.332273pt;}
.y59{bottom:175.162059pt;}
.y2e{bottom:180.040788pt;}
.yb7{bottom:183.104133pt;}
.yfd{bottom:183.933906pt;}
.y140{bottom:188.166313pt;}
.y116{bottom:189.386547pt;}
.y7d{bottom:189.386673pt;}
.ye2{bottom:190.216453pt;}
.y58{bottom:190.216459pt;}
.y11f{bottom:191.876031pt;}
.y2c{bottom:195.095188pt;}
.yb6{bottom:198.158533pt;}
.y13f{bottom:203.220713pt;}
.y7c{bottom:204.441073pt;}
.y57{bottom:205.270859pt;}
.ye1{bottom:205.270909pt;}
.yfc{bottom:206.100607pt;}
.y11e{bottom:206.930393pt;}
.y2d{bottom:210.149588pt;}
.y115{bottom:211.553399pt;}
.yb5{bottom:213.212933pt;}
.y13e{bottom:218.275113pt;}
.y7b{bottom:219.495473pt;}
.y56{bottom:220.325259pt;}
.ye0{bottom:220.325309pt;}
.yfb{bottom:221.154995pt;}
.y114{bottom:226.607799pt;}
.yb4{bottom:228.267333pt;}
.y11d{bottom:229.097106pt;}
.y13d{bottom:233.329513pt;}
.y7a{bottom:234.549860pt;}
.y55{bottom:235.379659pt;}
.ydf{bottom:235.379709pt;}
.yfa{bottom:236.209395pt;}
.y113{bottom:241.662199pt;}
.yc3{bottom:243.321608pt;}
.yb3{bottom:243.321733pt;}
.y2b{bottom:247.370714pt;}
.y79{bottom:249.604260pt;}
.y54{bottom:250.434059pt;}
.yde{bottom:250.434109pt;}
.yf9{bottom:251.263795pt;}
.y13c{bottom:255.496239pt;}
.y112{bottom:256.716599pt;}
.yb2{bottom:258.376133pt;}
.y78{bottom:264.658660pt;}
.y53{bottom:265.488459pt;}
.yf8{bottom:266.318195pt;}
.y111{bottom:271.770999pt;}
.yb1{bottom:273.430533pt;}
.y77{bottom:279.713060pt;}
.y52{bottom:280.542859pt;}
.yf7{bottom:281.372482pt;}
.y110{bottom:286.825399pt;}
.ydd{bottom:287.655160pt;}
.yb0{bottom:288.484933pt;}
.y2a{bottom:290.449582pt;}
.y9e{bottom:294.767460pt;}
.y51{bottom:295.597259pt;}
.y13b{bottom:299.829678pt;}
.y10f{bottom:301.879799pt;}
.y76{bottom:301.879849pt;}
.ydc{bottom:302.709560pt;}
.yaf{bottom:303.539182pt;}
.yf6{bottom:303.539333pt;}
.y29{bottom:304.249487pt;}
.y9d{bottom:309.821873pt;}
.y68{bottom:310.651471pt;}
.y92{bottom:310.651483pt;}
.y50{bottom:310.651634pt;}
.y11c{bottom:310.651659pt;}
.y13a{bottom:314.884040pt;}
.y10e{bottom:316.934174pt;}
.y75{bottom:316.934224pt;}
.ydb{bottom:317.763935pt;}
.yf5{bottom:318.593733pt;}
.y9c{bottom:324.876273pt;}
.y4f{bottom:325.705883pt;}
.yae{bottom:325.706034pt;}
.y10d{bottom:331.988436pt;}
.y74{bottom:331.988574pt;}
.y67{bottom:332.818322pt;}
.y91{bottom:332.818335pt;}
.yf4{bottom:333.648133pt;}
.y139{bottom:337.050816pt;}
.y28{bottom:338.961521pt;}
.y9b{bottom:339.930673pt;}
.yad{bottom:340.760434pt;}
.yc{bottom:344.666667pt;}
.y73{bottom:347.043024pt;}
.y4e{bottom:347.872722pt;}
.y90{bottom:347.872735pt;}
.yf3{bottom:348.702533pt;}
.y138{bottom:352.105103pt;}
.y27{bottom:352.761387pt;}
.y10c{bottom:354.155287pt;}
.y9a{bottom:354.985073pt;}
.yac{bottom:355.814834pt;}
.y72{bottom:362.097424pt;}
.y8f{bottom:362.927135pt;}
.yf2{bottom:363.756933pt;}
.y26{bottom:366.561254pt;}
.y10b{bottom:369.209687pt;}
.y99{bottom:370.039473pt;}
.yc2{bottom:370.869083pt;}
.yab{bottom:370.869234pt;}
.y137{bottom:374.271879pt;}
.y66{bottom:377.151774pt;}
.y71{bottom:377.151824pt;}
.y8e{bottom:377.981535pt;}
.y25{bottom:380.361121pt;}
.y10a{bottom:384.264087pt;}
.y98{bottom:385.093722pt;}
.yc1{bottom:385.923483pt;}
.yaa{bottom:385.923634pt;}
.yf1{bottom:385.923684pt;}
.y136{bottom:389.326204pt;}
.y4d{bottom:392.206174pt;}
.y70{bottom:392.206224pt;}
.yda{bottom:393.035822pt;}
.y8d{bottom:393.035935pt;}
.y24{bottom:394.160987pt;}
.y109{bottom:399.318487pt;}
.y11b{bottom:400.977883pt;}
.ya9{bottom:400.978034pt;}
.yf0{bottom:400.978084pt;}
.yb{bottom:403.333333pt;}
.y4c{bottom:407.260574pt;}
.y8c{bottom:408.090335pt;}
.y135{bottom:411.492980pt;}
.y108{bottom:414.372887pt;}
.y23{bottom:415.073155pt;}
.yd9{bottom:415.202673pt;}
.ya8{bottom:416.032271pt;}
.yef{bottom:416.032434pt;}
.ya{bottom:421.333333pt;}
.y4b{bottom:422.314974pt;}
.y11a{bottom:423.144722pt;}
.y8b{bottom:423.144735pt;}
.y6f{bottom:429.427287pt;}
.yd8{bottom:430.257073pt;}
.y4a{bottom:437.369374pt;}
.ya7{bottom:438.199122pt;}
.y8a{bottom:438.199135pt;}
.y9{bottom:439.333333pt;}
.y6e{bottom:444.481687pt;}
.yd7{bottom:445.311473pt;}
.y49{bottom:452.423774pt;}
.y89{bottom:453.253535pt;}
.y134{bottom:455.826357pt;}
.y22{bottom:456.897527pt;}
.y8{bottom:457.333333pt;}
.y6d{bottom:459.536087pt;}
.yd6{bottom:460.365873pt;}
.y48{bottom:467.478036pt;}
.y65{bottom:467.478174pt;}
.yee{bottom:468.307822pt;}
.y88{bottom:468.307935pt;}
.y21{bottom:470.697394pt;}
.y6c{bottom:474.590487pt;}
.y7{bottom:475.333333pt;}
.yd5{bottom:475.420273pt;}
.y133{bottom:477.993133pt;}
.y64{bottom:482.532574pt;}
.y87{bottom:483.362184pt;}
.yed{bottom:483.362222pt;}
.yc0{bottom:483.362335pt;}
.y20{bottom:484.497261pt;}
.y47{bottom:489.644887pt;}
.yd4{bottom:490.474673pt;}
.y132{bottom:493.047533pt;}
.y63{bottom:497.586974pt;}
.y1f{bottom:498.297127pt;}
.y86{bottom:498.416584pt;}
.ybf{bottom:498.416622pt;}
.y46{bottom:504.699287pt;}
.yd3{bottom:505.529073pt;}
.y1e{bottom:512.096994pt;}
.y97{bottom:512.641374pt;}
.y131{bottom:515.214309pt;}
.y45{bottom:519.753687pt;}
.yd2{bottom:520.583322pt;}
.y85{bottom:520.583435pt;}
.yec{bottom:520.583473pt;}
.y1d{bottom:525.896873pt;}
.y96{bottom:527.695636pt;}
.ya6{bottom:527.695774pt;}
.y130{bottom:530.268671pt;}
.y44{bottom:534.808087pt;}
.yeb{bottom:535.637873pt;}
.ya5{bottom:542.750036pt;}
.yd1{bottom:542.750174pt;}
.y1{bottom:545.333333pt;}
.y1c{bottom:546.809041pt;}
.y43{bottom:549.862487pt;}
.y6{bottom:550.666667pt;}
.yea{bottom:550.692273pt;}
.y12f{bottom:552.435372pt;}
.yd0{bottom:557.804574pt;}
.y42{bottom:564.916887pt;}
.ye9{bottom:565.746673pt;}
.y12e{bottom:567.489696pt;}
.y5{bottom:568.666667pt;}
.ycf{bottom:572.858974pt;}
.y107{bottom:579.971174pt;}
.y41{bottom:579.971287pt;}
.y4{bottom:586.666667pt;}
.yce{bottom:587.913374pt;}
.ye8{bottom:587.913424pt;}
.y12d{bottom:589.656472pt;}
.y1b{bottom:589.887946pt;}
.y40{bottom:595.025687pt;}
.y106{bottom:602.138025pt;}
.ycd{bottom:602.967774pt;}
.y3{bottom:604.666667pt;}
.y1a{bottom:604.942346pt;}
.y3f{bottom:610.079974pt;}
.y62{bottom:610.080087pt;}
.y119{bottom:610.080137pt;}
.y105{bottom:617.192425pt;}
.ycc{bottom:618.022174pt;}
.ye7{bottom:618.022224pt;}
.y19{bottom:619.996746pt;}
.y61{bottom:625.134374pt;}
.ya4{bottom:625.134487pt;}
.y118{bottom:625.134537pt;}
.y2{bottom:626.000000pt;}
.y3e{bottom:632.246825pt;}
.ycb{bottom:633.076574pt;}
.ye6{bottom:633.076661pt;}
.y12c{bottom:633.989912pt;}
.y6b{bottom:640.188774pt;}
.ya3{bottom:640.188887pt;}
.y3d{bottom:647.301225pt;}
.ye5{bottom:648.131011pt;}
.y12b{bottom:649.044274pt;}
.ya2{bottom:655.243287pt;}
.yca{bottom:655.243337pt;}
.y3c{bottom:662.355625pt;}
.ybe{bottom:670.297574pt;}
.ya1{bottom:670.297687pt;}
.yc9{bottom:670.297737pt;}
.y12a{bottom:671.211050pt;}
.y18{bottom:674.568695pt;}
.y3b{bottom:677.410025pt;}
.ya0{bottom:685.352087pt;}
.yc8{bottom:685.352137pt;}
.y129{bottom:686.265412pt;}
.y3a{bottom:692.464425pt;}
.y9f{bottom:700.406374pt;}
.ye4{bottom:700.406487pt;}
.yc7{bottom:700.406537pt;}
.y17{bottom:702.168680pt;}
.y39{bottom:707.518825pt;}
.y128{bottom:708.432188pt;}
.ye3{bottom:715.460774pt;}
.yc6{bottom:715.460887pt;}
.y38{bottom:722.573225pt;}
.y127{bottom:723.486588pt;}
.y16{bottom:729.768413pt;}
.y37{bottom:737.627625pt;}
.y126{bottom:738.540951pt;}
.y35{bottom:781.519820pt;}
.y60{bottom:781.519883pt;}
.y36{bottom:781.582609pt;}
.y15{bottom:816.768656pt;}
.h6{height:31.748024pt;}
.hf{height:34.842703pt;}
.h4{height:34.945312pt;}
.ha{height:35.891415pt;}
.h23{height:35.989425pt;}
.hb{height:36.283456pt;}
.h18{height:38.238764pt;}
.h21{height:40.377841pt;}
.h1d{height:40.487953pt;}
.h1f{height:40.488103pt;}
.h1c{height:40.818888pt;}
.h1e{height:40.819089pt;}
.h22{height:40.819139pt;}
.h20{height:40.819189pt;}
.h3{height:44.500000pt;}
.h16{height:44.864268pt;}
.he{height:44.986781pt;}
.h14{height:44.986882pt;}
.h10{height:44.987233pt;}
.h15{height:44.987283pt;}
.h11{height:44.987333pt;}
.h13{height:44.987383pt;}
.h1a{height:44.987434pt;}
.h19{height:44.987484pt;}
.h17{height:44.987534pt;}
.hc{height:45.354320pt;}
.h12{height:45.354370pt;}
.h1b{height:45.354471pt;}
.h2{height:50.062500pt;}
.h9{height:57.240534pt;}
.h1{height:66.750000pt;}
.h7{height:89.140474pt;}
.h8{height:89.141478pt;}
.hd{height:195.818326pt;}
.h5{height:853.459014pt;}
.h0{height:1056.000000pt;}
.w1{width:604.559526pt;}
.w2{width:604.559563pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:45.333333pt;}
.x13{left:71.132040pt;}
.xe{left:89.303165pt;}
.xc{left:94.560000pt;}
.x14{left:107.554655pt;}
.x17{left:124.474396pt;}
.x15{left:167.025394pt;}
.x4{left:186.240000pt;}
.x10{left:230.279203pt;}
.x11{left:247.893805pt;}
.x12{left:252.007808pt;}
.xf{left:253.721701pt;}
.x7{left:259.933333pt;}
.xb{left:299.146667pt;}
.x5{left:315.946667pt;}
.xa{left:353.160000pt;}
.x3{left:355.320000pt;}
.x6{left:373.320000pt;}
.xd{left:386.266096pt;}
.x1{left:402.653333pt;}
.x2{left:440.000000pt;}
.x18{left:514.609586pt;}
.x16{left:515.540650pt;}
.x9{left:580.600000pt;}
}

