
    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_9c0fdecba8658b2393d1a7fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b646e99bb6720a6bb3cab1fe.woff')format("woff");}.ff2{font-family:ff2;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;}
.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.072000px;}
.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:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-2.352000px;}
._2{margin-left:-1.008000px;}
._1{width:1.512000px;}
._3{width:2.688000px;}
._c{width:3.768000px;}
._a{width:4.968000px;}
._9{width:6.912000px;}
._7{width:8.136000px;}
._8{width:9.360000px;}
._d{width:10.872000px;}
._11{width:12.648000px;}
._10{width:13.752000px;}
._5{width:14.832000px;}
._4{width:15.840000px;}
._6{width:16.848000px;}
._b{width:18.000000px;}
._16{width:21.024000px;}
._14{width:22.536000px;}
._15{width:23.544000px;}
._12{width:27.432000px;}
._e{width:28.800000px;}
._f{width:29.808000px;}
._17{width:40.248000px;}
._13{width:46.008000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y74{bottom:111.450000px;}
.ya8{bottom:115.200000px;}
.y90{bottom:115.950000px;}
.y69{bottom:118.950000px;}
.yd4{bottom:120.750000px;}
.y27{bottom:126.300000px;}
.yf7{bottom:127.950000px;}
.y73{bottom:133.500000px;}
.ya7{bottom:137.250000px;}
.y8f{bottom:138.000000px;}
.y68{bottom:141.000000px;}
.ye4{bottom:141.750000px;}
.yd3{bottom:142.950000px;}
.y26{bottom:148.350000px;}
.y106{bottom:151.200000px;}
.y11a{bottom:153.750000px;}
.y72{bottom:155.700000px;}
.ya6{bottom:159.450000px;}
.yf6{bottom:162.000000px;}
.y67{bottom:163.200000px;}
.ye3{bottom:163.950000px;}
.yd2{bottom:165.000000px;}
.y12b{bottom:165.750000px;}
.y25{bottom:170.550000px;}
.y8e{bottom:172.200000px;}
.y4d{bottom:173.250000px;}
.y71{bottom:177.750000px;}
.y66{bottom:185.250000px;}
.yd1{bottom:187.200000px;}
.y119{bottom:187.950000px;}
.y24{bottom:192.600000px;}
.ya5{bottom:193.500000px;}
.y4c{bottom:195.450000px;}
.yf5{bottom:196.200000px;}
.ye2{bottom:198.000000px;}
.y8d{bottom:206.250000px;}
.y65{bottom:207.450000px;}
.yd0{bottom:209.250000px;}
.y118{bottom:210.000000px;}
.ya4{bottom:215.700000px;}
.y4b{bottom:217.500000px;}
.yf4{bottom:218.250000px;}
.ye1{bottom:220.200000px;}
.y23{bottom:226.800000px;}
.y64{bottom:229.500000px;}
.ycf{bottom:231.450000px;}
.y12a{bottom:232.200000px;}
.ya3{bottom:237.750000px;}
.y4a{bottom:239.700000px;}
.y8c{bottom:240.450000px;}
.y117{bottom:244.200000px;}
.y70{bottom:246.000000px;}
.y22{bottom:248.850000px;}
.y105{bottom:251.700000px;}
.yce{bottom:253.500000px;}
.ye0{bottom:254.250000px;}
.ya2{bottom:259.950000px;}
.y49{bottom:261.750000px;}
.y63{bottom:263.700000px;}
.y129{bottom:266.250000px;}
.y21{bottom:271.050000px;}
.y104{bottom:273.750000px;}
.y8b{bottom:274.500000px;}
.ycd{bottom:275.700000px;}
.y116{bottom:278.250000px;}
.y48{bottom:283.950000px;}
.y62{bottom:285.750000px;}
.ydf{bottom:288.450000px;}
.y20{bottom:293.100000px;}
.ya1{bottom:294.000000px;}
.y103{bottom:295.950000px;}
.ycc{bottom:297.750000px;}
.y115{bottom:300.450000px;}
.y47{bottom:306.000000px;}
.y61{bottom:307.950000px;}
.y8a{bottom:308.700000px;}
.y1f{bottom:315.300000px;}
.ya0{bottom:316.200000px;}
.y102{bottom:318.000000px;}
.ycb{bottom:319.950000px;}
.yde{bottom:322.500000px;}
.y46{bottom:328.200000px;}
.y60{bottom:330.000000px;}
.y89{bottom:330.750000px;}
.y1e{bottom:337.350000px;}
.y9f{bottom:338.250000px;}
.y101{bottom:340.200000px;}
.yba{bottom:342.000000px;}
.y128{bottom:344.700000px;}
.y45{bottom:350.250000px;}
.y5f{bottom:352.200000px;}
.yca{bottom:354.000000px;}
.ydd{bottom:356.700000px;}
.y1d{bottom:359.550000px;}
.y100{bottom:362.250000px;}
.yb9{bottom:364.200000px;}
.y88{bottom:364.950000px;}
.y44{bottom:372.450000px;}
.yc9{bottom:376.200000px;}
.y127{bottom:378.750000px;}
.yff{bottom:384.450000px;}
.y5e{bottom:386.250000px;}
.ydc{bottom:390.750000px;}
.y1c{bottom:393.600000px;}
.y43{bottom:394.500000px;}
.yc8{bottom:398.250000px;}
.y87{bottom:399.000000px;}
.y126{bottom:400.950000px;}
.yfe{bottom:406.500000px;}
.y5d{bottom:408.450000px;}
.y114{bottom:412.950000px;}
.y1b{bottom:415.800000px;}
.y42{bottom:416.700000px;}
.yc7{bottom:420.450000px;}
.yf3{bottom:421.200000px;}
.ydb{bottom:424.950000px;}
.yfd{bottom:428.700000px;}
.y5c{bottom:430.500000px;}
.y86{bottom:433.200000px;}
.y125{bottom:435.000000px;}
.y1a{bottom:437.850000px;}
.y9e{bottom:438.750000px;}
.yc6{bottom:442.500000px;}
.y113{bottom:447.000000px;}
.y41{bottom:450.750000px;}
.y5b{bottom:452.700000px;}
.y85{bottom:455.250000px;}
.y124{bottom:457.200000px;}
.yda{bottom:459.000000px;}
.y19{bottom:460.050000px;}
.y9d{bottom:460.950000px;}
.yc5{bottom:464.700000px;}
.y40{bottom:472.950000px;}
.y5a{bottom:474.750000px;}
.yf2{bottom:477.450000px;}
.y112{bottom:481.200000px;}
.y18{bottom:482.100000px;}
.y9c{bottom:483.000000px;}
.yc4{bottom:486.750000px;}
.y84{bottom:489.450000px;}
.y123{bottom:491.250000px;}
.yd9{bottom:493.200000px;}
.y3f{bottom:495.000000px;}
.y59{bottom:496.950000px;}
.y111{bottom:503.250000px;}
.y17{bottom:504.300000px;}
.yfc{bottom:507.000000px;}
.yc3{bottom:508.950000px;}
.y83{bottom:511.500000px;}
.y122{bottom:513.450000px;}
.yd8{bottom:515.250000px;}
.y3e{bottom:517.200000px;}
.y58{bottom:519.000000px;}
.y110{bottom:525.450000px;}
.y16{bottom:526.350000px;}
.yfb{bottom:529.200000px;}
.yc2{bottom:531.000000px;}
.y82{bottom:533.700000px;}
.y121{bottom:535.500000px;}
.y3d{bottom:539.250000px;}
.y57{bottom:541.200000px;}
.y10f{bottom:547.500000px;}
.y15{bottom:548.550000px;}
.yd7{bottom:549.450000px;}
.yfa{bottom:551.250000px;}
.yc1{bottom:553.200000px;}
.yf1{bottom:555.750000px;}
.y3c{bottom:561.450000px;}
.y56{bottom:563.250000px;}
.y81{bottom:567.750000px;}
.y10e{bottom:569.700000px;}
.y14{bottom:570.600000px;}
.yd6{bottom:571.500000px;}
.yf9{bottom:573.450000px;}
.yc0{bottom:575.250000px;}
.yf0{bottom:577.950000px;}
.y3b{bottom:583.500000px;}
.y55{bottom:585.450000px;}
.y80{bottom:589.950000px;}
.y120{bottom:591.750000px;}
.yd5{bottom:593.700000px;}
.yf8{bottom:595.500000px;}
.yb8{bottom:597.450000px;}
.y10d{bottom:603.750000px;}
.y13{bottom:604.800000px;}
.y3a{bottom:605.700000px;}
.y54{bottom:607.500000px;}
.yef{bottom:612.000000px;}
.y9b{bottom:617.700000px;}
.yb7{bottom:619.500000px;}
.y7f{bottom:624.000000px;}
.y10c{bottom:625.950000px;}
.y12{bottom:626.850000px;}
.y39{bottom:627.750000px;}
.y53{bottom:629.700000px;}
.yee{bottom:634.200000px;}
.y9a{bottom:639.750000px;}
.yb6{bottom:641.700000px;}
.y7e{bottom:646.200000px;}
.y10b{bottom:648.000000px;}
.y11{bottom:649.050000px;}
.y38{bottom:649.950000px;}
.y52{bottom:651.750000px;}
.y99{bottom:661.950000px;}
.yb5{bottom:663.750000px;}
.yed{bottom:668.250000px;}
.y10{bottom:671.100000px;}
.y51{bottom:673.950000px;}
.y7d{bottom:680.250000px;}
.y10a{bottom:682.200000px;}
.y37{bottom:684.000000px;}
.yb4{bottom:685.950000px;}
.yec{bottom:690.450000px;}
.y50{bottom:696.000000px;}
.y109{bottom:704.250000px;}
.yf{bottom:705.300000px;}
.y36{bottom:706.200000px;}
.yb3{bottom:708.000000px;}
.y7c{bottom:714.450000px;}
.y4f{bottom:718.200000px;}
.yeb{bottom:724.500000px;}
.y108{bottom:726.450000px;}
.ye{bottom:727.350000px;}
.y35{bottom:728.250000px;}
.yb2{bottom:730.200000px;}
.y11f{bottom:738.450000px;}
.y4e{bottom:740.250000px;}
.ybf{bottom:742.200000px;}
.y7b{bottom:748.500000px;}
.yd{bottom:749.550000px;}
.y98{bottom:750.450000px;}
.yb1{bottom:752.250000px;}
.yea{bottom:758.700000px;}
.y11e{bottom:760.500000px;}
.y34{bottom:762.450000px;}
.ybe{bottom:764.250000px;}
.y7a{bottom:770.700000px;}
.yc{bottom:771.600000px;}
.y97{bottom:772.500000px;}
.yb0{bottom:774.450000px;}
.y11d{bottom:782.700000px;}
.y33{bottom:784.500000px;}
.ybd{bottom:786.450000px;}
.ye9{bottom:792.750000px;}
.yb{bottom:793.800000px;}
.y96{bottom:794.700000px;}
.y6f{bottom:796.500000px;}
.y79{bottom:804.750000px;}
.y32{bottom:806.700000px;}
.ybc{bottom:808.500000px;}
.y107{bottom:814.950000px;}
.ya{bottom:815.850000px;}
.y95{bottom:816.750000px;}
.y6e{bottom:818.700000px;}
.y78{bottom:826.950000px;}
.y31{bottom:828.750000px;}
.ybb{bottom:830.700000px;}
.y11c{bottom:837.000000px;}
.y9{bottom:838.050000px;}
.y94{bottom:838.950000px;}
.y6d{bottom:840.750000px;}
.ye8{bottom:849.000000px;}
.y30{bottom:850.950000px;}
.yaf{bottom:852.750000px;}
.y8{bottom:860.100000px;}
.y77{bottom:861.000000px;}
.y6c{bottom:862.950000px;}
.y11b{bottom:871.200000px;}
.y2f{bottom:873.000000px;}
.yae{bottom:874.950000px;}
.y7{bottom:882.300000px;}
.y93{bottom:883.200000px;}
.y6b{bottom:885.000000px;}
.y2e{bottom:895.200000px;}
.yad{bottom:897.000000px;}
.y92{bottom:905.250000px;}
.y6a{bottom:907.200000px;}
.y76{bottom:917.250000px;}
.yac{bottom:919.200000px;}
.y91{bottom:927.450000px;}
.y2d{bottom:929.250000px;}
.ye7{bottom:939.450000px;}
.yab{bottom:941.250000px;}
.y6{bottom:951.300000px;}
.y2c{bottom:951.450000px;}
.ye6{bottom:961.500000px;}
.yaa{bottom:963.450000px;}
.y2b{bottom:973.500000px;}
.ya9{bottom:985.500000px;}
.y5{bottom:989.100000px;}
.y75{bottom:995.700000px;}
.y2a{bottom:1007.700000px;}
.y4{bottom:1014.900000px;}
.ye5{bottom:1017.750000px;}
.y29{bottom:1029.750000px;}
.y28{bottom:1051.950000px;}
.y3{bottom:1111.050000px;}
.y2{bottom:1136.850000px;}
.h3{height:64.546875px;}
.h4{height:65.003906px;}
.h2{height:75.837891px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.800000px;}
.x2{left:133.350000px;}
.x5{left:180.900000px;}
.x3{left:199.950000px;}
.x4{left:338.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-2.090667pt;}
._2{margin-left:-0.896000pt;}
._1{width:1.344000pt;}
._3{width:2.389333pt;}
._c{width:3.349333pt;}
._a{width:4.416000pt;}
._9{width:6.144000pt;}
._7{width:7.232000pt;}
._8{width:8.320000pt;}
._d{width:9.664000pt;}
._11{width:11.242667pt;}
._10{width:12.224000pt;}
._5{width:13.184000pt;}
._4{width:14.080000pt;}
._6{width:14.976000pt;}
._b{width:16.000000pt;}
._16{width:18.688000pt;}
._14{width:20.032000pt;}
._15{width:20.928000pt;}
._12{width:24.384000pt;}
._e{width:25.600000pt;}
._f{width:26.496000pt;}
._17{width:35.776000pt;}
._13{width:40.896000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y74{bottom:99.066667pt;}
.ya8{bottom:102.400000pt;}
.y90{bottom:103.066667pt;}
.y69{bottom:105.733333pt;}
.yd4{bottom:107.333333pt;}
.y27{bottom:112.266667pt;}
.yf7{bottom:113.733333pt;}
.y73{bottom:118.666667pt;}
.ya7{bottom:122.000000pt;}
.y8f{bottom:122.666667pt;}
.y68{bottom:125.333333pt;}
.ye4{bottom:126.000000pt;}
.yd3{bottom:127.066667pt;}
.y26{bottom:131.866667pt;}
.y106{bottom:134.400000pt;}
.y11a{bottom:136.666667pt;}
.y72{bottom:138.400000pt;}
.ya6{bottom:141.733333pt;}
.yf6{bottom:144.000000pt;}
.y67{bottom:145.066667pt;}
.ye3{bottom:145.733333pt;}
.yd2{bottom:146.666667pt;}
.y12b{bottom:147.333333pt;}
.y25{bottom:151.600000pt;}
.y8e{bottom:153.066667pt;}
.y4d{bottom:154.000000pt;}
.y71{bottom:158.000000pt;}
.y66{bottom:164.666667pt;}
.yd1{bottom:166.400000pt;}
.y119{bottom:167.066667pt;}
.y24{bottom:171.200000pt;}
.ya5{bottom:172.000000pt;}
.y4c{bottom:173.733333pt;}
.yf5{bottom:174.400000pt;}
.ye2{bottom:176.000000pt;}
.y8d{bottom:183.333333pt;}
.y65{bottom:184.400000pt;}
.yd0{bottom:186.000000pt;}
.y118{bottom:186.666667pt;}
.ya4{bottom:191.733333pt;}
.y4b{bottom:193.333333pt;}
.yf4{bottom:194.000000pt;}
.ye1{bottom:195.733333pt;}
.y23{bottom:201.600000pt;}
.y64{bottom:204.000000pt;}
.ycf{bottom:205.733333pt;}
.y12a{bottom:206.400000pt;}
.ya3{bottom:211.333333pt;}
.y4a{bottom:213.066667pt;}
.y8c{bottom:213.733333pt;}
.y117{bottom:217.066667pt;}
.y70{bottom:218.666667pt;}
.y22{bottom:221.200000pt;}
.y105{bottom:223.733333pt;}
.yce{bottom:225.333333pt;}
.ye0{bottom:226.000000pt;}
.ya2{bottom:231.066667pt;}
.y49{bottom:232.666667pt;}
.y63{bottom:234.400000pt;}
.y129{bottom:236.666667pt;}
.y21{bottom:240.933333pt;}
.y104{bottom:243.333333pt;}
.y8b{bottom:244.000000pt;}
.ycd{bottom:245.066667pt;}
.y116{bottom:247.333333pt;}
.y48{bottom:252.400000pt;}
.y62{bottom:254.000000pt;}
.ydf{bottom:256.400000pt;}
.y20{bottom:260.533333pt;}
.ya1{bottom:261.333333pt;}
.y103{bottom:263.066667pt;}
.ycc{bottom:264.666667pt;}
.y115{bottom:267.066667pt;}
.y47{bottom:272.000000pt;}
.y61{bottom:273.733333pt;}
.y8a{bottom:274.400000pt;}
.y1f{bottom:280.266667pt;}
.ya0{bottom:281.066667pt;}
.y102{bottom:282.666667pt;}
.ycb{bottom:284.400000pt;}
.yde{bottom:286.666667pt;}
.y46{bottom:291.733333pt;}
.y60{bottom:293.333333pt;}
.y89{bottom:294.000000pt;}
.y1e{bottom:299.866667pt;}
.y9f{bottom:300.666667pt;}
.y101{bottom:302.400000pt;}
.yba{bottom:304.000000pt;}
.y128{bottom:306.400000pt;}
.y45{bottom:311.333333pt;}
.y5f{bottom:313.066667pt;}
.yca{bottom:314.666667pt;}
.ydd{bottom:317.066667pt;}
.y1d{bottom:319.600000pt;}
.y100{bottom:322.000000pt;}
.yb9{bottom:323.733333pt;}
.y88{bottom:324.400000pt;}
.y44{bottom:331.066667pt;}
.yc9{bottom:334.400000pt;}
.y127{bottom:336.666667pt;}
.yff{bottom:341.733333pt;}
.y5e{bottom:343.333333pt;}
.ydc{bottom:347.333333pt;}
.y1c{bottom:349.866667pt;}
.y43{bottom:350.666667pt;}
.yc8{bottom:354.000000pt;}
.y87{bottom:354.666667pt;}
.y126{bottom:356.400000pt;}
.yfe{bottom:361.333333pt;}
.y5d{bottom:363.066667pt;}
.y114{bottom:367.066667pt;}
.y1b{bottom:369.600000pt;}
.y42{bottom:370.400000pt;}
.yc7{bottom:373.733333pt;}
.yf3{bottom:374.400000pt;}
.ydb{bottom:377.733333pt;}
.yfd{bottom:381.066667pt;}
.y5c{bottom:382.666667pt;}
.y86{bottom:385.066667pt;}
.y125{bottom:386.666667pt;}
.y1a{bottom:389.200000pt;}
.y9e{bottom:390.000000pt;}
.yc6{bottom:393.333333pt;}
.y113{bottom:397.333333pt;}
.y41{bottom:400.666667pt;}
.y5b{bottom:402.400000pt;}
.y85{bottom:404.666667pt;}
.y124{bottom:406.400000pt;}
.yda{bottom:408.000000pt;}
.y19{bottom:408.933333pt;}
.y9d{bottom:409.733333pt;}
.yc5{bottom:413.066667pt;}
.y40{bottom:420.400000pt;}
.y5a{bottom:422.000000pt;}
.yf2{bottom:424.400000pt;}
.y112{bottom:427.733333pt;}
.y18{bottom:428.533333pt;}
.y9c{bottom:429.333333pt;}
.yc4{bottom:432.666667pt;}
.y84{bottom:435.066667pt;}
.y123{bottom:436.666667pt;}
.yd9{bottom:438.400000pt;}
.y3f{bottom:440.000000pt;}
.y59{bottom:441.733333pt;}
.y111{bottom:447.333333pt;}
.y17{bottom:448.266667pt;}
.yfc{bottom:450.666667pt;}
.yc3{bottom:452.400000pt;}
.y83{bottom:454.666667pt;}
.y122{bottom:456.400000pt;}
.yd8{bottom:458.000000pt;}
.y3e{bottom:459.733333pt;}
.y58{bottom:461.333333pt;}
.y110{bottom:467.066667pt;}
.y16{bottom:467.866667pt;}
.yfb{bottom:470.400000pt;}
.yc2{bottom:472.000000pt;}
.y82{bottom:474.400000pt;}
.y121{bottom:476.000000pt;}
.y3d{bottom:479.333333pt;}
.y57{bottom:481.066667pt;}
.y10f{bottom:486.666667pt;}
.y15{bottom:487.600000pt;}
.yd7{bottom:488.400000pt;}
.yfa{bottom:490.000000pt;}
.yc1{bottom:491.733333pt;}
.yf1{bottom:494.000000pt;}
.y3c{bottom:499.066667pt;}
.y56{bottom:500.666667pt;}
.y81{bottom:504.666667pt;}
.y10e{bottom:506.400000pt;}
.y14{bottom:507.200000pt;}
.yd6{bottom:508.000000pt;}
.yf9{bottom:509.733333pt;}
.yc0{bottom:511.333333pt;}
.yf0{bottom:513.733333pt;}
.y3b{bottom:518.666667pt;}
.y55{bottom:520.400000pt;}
.y80{bottom:524.400000pt;}
.y120{bottom:526.000000pt;}
.yd5{bottom:527.733333pt;}
.yf8{bottom:529.333333pt;}
.yb8{bottom:531.066667pt;}
.y10d{bottom:536.666667pt;}
.y13{bottom:537.600000pt;}
.y3a{bottom:538.400000pt;}
.y54{bottom:540.000000pt;}
.yef{bottom:544.000000pt;}
.y9b{bottom:549.066667pt;}
.yb7{bottom:550.666667pt;}
.y7f{bottom:554.666667pt;}
.y10c{bottom:556.400000pt;}
.y12{bottom:557.200000pt;}
.y39{bottom:558.000000pt;}
.y53{bottom:559.733333pt;}
.yee{bottom:563.733333pt;}
.y9a{bottom:568.666667pt;}
.yb6{bottom:570.400000pt;}
.y7e{bottom:574.400000pt;}
.y10b{bottom:576.000000pt;}
.y11{bottom:576.933333pt;}
.y38{bottom:577.733333pt;}
.y52{bottom:579.333333pt;}
.y99{bottom:588.400000pt;}
.yb5{bottom:590.000000pt;}
.yed{bottom:594.000000pt;}
.y10{bottom:596.533333pt;}
.y51{bottom:599.066667pt;}
.y7d{bottom:604.666667pt;}
.y10a{bottom:606.400000pt;}
.y37{bottom:608.000000pt;}
.yb4{bottom:609.733333pt;}
.yec{bottom:613.733333pt;}
.y50{bottom:618.666667pt;}
.y109{bottom:626.000000pt;}
.yf{bottom:626.933333pt;}
.y36{bottom:627.733333pt;}
.yb3{bottom:629.333333pt;}
.y7c{bottom:635.066667pt;}
.y4f{bottom:638.400000pt;}
.yeb{bottom:644.000000pt;}
.y108{bottom:645.733333pt;}
.ye{bottom:646.533333pt;}
.y35{bottom:647.333333pt;}
.yb2{bottom:649.066667pt;}
.y11f{bottom:656.400000pt;}
.y4e{bottom:658.000000pt;}
.ybf{bottom:659.733333pt;}
.y7b{bottom:665.333333pt;}
.yd{bottom:666.266667pt;}
.y98{bottom:667.066667pt;}
.yb1{bottom:668.666667pt;}
.yea{bottom:674.400000pt;}
.y11e{bottom:676.000000pt;}
.y34{bottom:677.733333pt;}
.ybe{bottom:679.333333pt;}
.y7a{bottom:685.066667pt;}
.yc{bottom:685.866667pt;}
.y97{bottom:686.666667pt;}
.yb0{bottom:688.400000pt;}
.y11d{bottom:695.733333pt;}
.y33{bottom:697.333333pt;}
.ybd{bottom:699.066667pt;}
.ye9{bottom:704.666667pt;}
.yb{bottom:705.600000pt;}
.y96{bottom:706.400000pt;}
.y6f{bottom:708.000000pt;}
.y79{bottom:715.333333pt;}
.y32{bottom:717.066667pt;}
.ybc{bottom:718.666667pt;}
.y107{bottom:724.400000pt;}
.ya{bottom:725.200000pt;}
.y95{bottom:726.000000pt;}
.y6e{bottom:727.733333pt;}
.y78{bottom:735.066667pt;}
.y31{bottom:736.666667pt;}
.ybb{bottom:738.400000pt;}
.y11c{bottom:744.000000pt;}
.y9{bottom:744.933333pt;}
.y94{bottom:745.733333pt;}
.y6d{bottom:747.333333pt;}
.ye8{bottom:754.666667pt;}
.y30{bottom:756.400000pt;}
.yaf{bottom:758.000000pt;}
.y8{bottom:764.533333pt;}
.y77{bottom:765.333333pt;}
.y6c{bottom:767.066667pt;}
.y11b{bottom:774.400000pt;}
.y2f{bottom:776.000000pt;}
.yae{bottom:777.733333pt;}
.y7{bottom:784.266667pt;}
.y93{bottom:785.066667pt;}
.y6b{bottom:786.666667pt;}
.y2e{bottom:795.733333pt;}
.yad{bottom:797.333333pt;}
.y92{bottom:804.666667pt;}
.y6a{bottom:806.400000pt;}
.y76{bottom:815.333333pt;}
.yac{bottom:817.066667pt;}
.y91{bottom:824.400000pt;}
.y2d{bottom:826.000000pt;}
.ye7{bottom:835.066667pt;}
.yab{bottom:836.666667pt;}
.y6{bottom:845.600000pt;}
.y2c{bottom:845.733333pt;}
.ye6{bottom:854.666667pt;}
.yaa{bottom:856.400000pt;}
.y2b{bottom:865.333333pt;}
.ya9{bottom:876.000000pt;}
.y5{bottom:879.200000pt;}
.y75{bottom:885.066667pt;}
.y2a{bottom:895.733333pt;}
.y4{bottom:902.133333pt;}
.ye5{bottom:904.666667pt;}
.y29{bottom:915.333333pt;}
.y28{bottom:935.066667pt;}
.y3{bottom:987.600000pt;}
.y2{bottom:1010.533333pt;}
.h3{height:57.375000pt;}
.h4{height:57.781250pt;}
.h2{height:67.411458pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.600000pt;}
.x2{left:118.533333pt;}
.x5{left:160.800000pt;}
.x3{left:177.733333pt;}
.x4{left:300.533333pt;}
}

