
    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_694d43da658353204bf4c5d9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6de6af3327855e7cae3d5c30.woff')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_e46cdbba2c1c684896d324a3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.957520;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_6e86343c40974c8119d9e308.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3e902b21ee5fe9670959199e.woff')format("woff");}.ff5{font-family:ff5;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;}
.m4{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);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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);}
.m2{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);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:194.525322px;}
.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;}
}
.ws3{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:0.000000px;}
._15{margin-left:-10.751411px;}
._a{margin-left:-3.106638px;}
._1{margin-left:-1.067137px;}
._0{width:1.019914px;}
._9{width:2.508515px;}
._10{width:3.720235px;}
._c{width:5.028242px;}
._7{width:6.994473px;}
._8{width:8.098409px;}
._14{width:9.180817px;}
._13{width:10.197949px;}
._3{width:11.238767px;}
._4{width:12.252586px;}
._f{width:13.503432px;}
._12{width:14.766488px;}
._b{width:15.860010px;}
._18{width:16.953149px;}
._d{width:19.394300px;}
._e{width:20.884457px;}
._11{width:22.102030px;}
._1a{width:23.116232px;}
._1b{width:24.600629px;}
._16{width:26.684971px;}
._19{width:28.156226px;}
._6{width:29.195640px;}
._5{width:30.881423px;}
._17{width:54.211382px;}
._2{width:194.525202px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500028px;}
.ydc{bottom:57.899977px;}
.y3{bottom:58.619977px;}
.ydd{bottom:73.560240px;}
.y4{bottom:74.280240px;}
.ydb{bottom:78.059969px;}
.y2{bottom:78.779968px;}
.y54{bottom:110.100256px;}
.y40{bottom:110.280256px;}
.yeb{bottom:110.460256px;}
.y8d{bottom:113.519955px;}
.y3f{bottom:117.840253px;}
.yea{bottom:118.020253px;}
.y73{bottom:125.759950px;}
.y53{bottom:127.560249px;}
.y4e{bottom:128.640249px;}
.y3e{bottom:129.180248px;}
.ye9{bottom:129.360248px;}
.yab{bottom:130.259948px;}
.yd8{bottom:133.499947px;}
.y52{bottom:135.120246px;}
.y4d{bottom:136.200246px;}
.y87{bottom:140.699944px;}
.ycd{bottom:142.319943px;}
.y9a{bottom:144.299942px;}
.y8c{bottom:144.479942px;}
.y51{bottom:146.460241px;}
.y4c{bottom:147.000241px;}
.y4b{bottom:154.559938px;}
.y72{bottom:156.719937px;}
.ybc{bottom:158.339937px;}
.y20{bottom:160.319936px;}
.yaa{bottom:161.219936px;}
.y4a{bottom:165.359934px;}
.y55{bottom:169.139932px;}
.y86{bottom:171.839931px;}
.y49{bottom:172.919931px;}
.ycc{bottom:173.279931px;}
.y8b{bottom:175.619930px;}
.yd7{bottom:179.579928px;}
.y48{bottom:184.259926px;}
.y71{bottom:187.859925px;}
.ybb{bottom:189.299924px;}
.y3c{bottom:190.379924px;}
.y1f{bottom:191.459923px;}
.ya9{bottom:192.359923px;}
.y3d{bottom:198.659921px;}
.y85{bottom:202.799919px;}
.ycb{bottom:204.419918px;}
.y8a{bottom:206.579917px;}
.ye8{bottom:218.279913px;}
.y70{bottom:218.819912px;}
.yba{bottom:220.439912px;}
.y3b{bottom:221.519911px;}
.ya8{bottom:223.319911px;}
.yd6{bottom:225.659910px;}
.y84{bottom:233.939906px;}
.yca{bottom:235.379906px;}
.y99{bottom:236.459905px;}
.y1e{bottom:237.539905px;}
.y89{bottom:237.719905px;}
.ye7{bottom:249.419900px;}
.y6f{bottom:249.959900px;}
.yb9{bottom:251.399899px;}
.ya7{bottom:254.279898px;}
.y83{bottom:264.899894px;}
.yc9{bottom:266.519893px;}
.y39{bottom:267.419893px;}
.y1d{bottom:268.499893px;}
.yd5{bottom:271.739891px;}
.y3a{bottom:275.699890px;}
.ye6{bottom:280.379888px;}
.y6e{bottom:280.919888px;}
.y98{bottom:282.539887px;}
.ya6{bottom:285.419886px;}
.y82{bottom:296.039882px;}
.yc8{bottom:297.479881px;}
.y38{bottom:298.559881px;}
.y1c{bottom:299.639880px;}
.ye5{bottom:311.519875px;}
.yb8{bottom:313.499875px;}
.ya5{bottom:316.379873px;}
.yd4{bottom:317.639873px;}
.y6d{bottom:326.999869px;}
.y97{bottom:328.619869px;}
.y81{bottom:342.119863px;}
.ye4{bottom:342.479863px;}
.y37{bottom:344.639862px;}
.y1b{bottom:345.539862px;}
.ya4{bottom:347.519861px;}
.y6c{bottom:358.139857px;}
.y96{bottom:359.579856px;}
.yd3{bottom:363.719855px;}
.y80{bottom:373.079851px;}
.ye3{bottom:373.619851px;}
.y36{bottom:375.599850px;}
.y1a{bottom:376.679849px;}
.y6b{bottom:389.099844px;}
.y95{bottom:390.539844px;}
.ya3{bottom:393.599843px;}
.y7f{bottom:404.039838px;}
.ye2{bottom:404.579838px;}
.yc7{bottom:405.659838px;}
.y35{bottom:406.739837px;}
.y19{bottom:407.639837px;}
.yd2{bottom:409.799836px;}
.y6a{bottom:420.239832px;}
.y94{bottom:421.679831px;}
.ya2{bottom:424.559830px;}
.y7e{bottom:435.179826px;}
.ye1{bottom:435.719826px;}
.yc6{bottom:436.619825px;}
.y34{bottom:437.699825px;}
.y18{bottom:438.779824px;}
.y69{bottom:451.199820px;}
.y93{bottom:452.639819px;}
.ya1{bottom:455.699818px;}
.yd1{bottom:455.879818px;}
.y7d{bottom:466.139814px;}
.yc5{bottom:467.759813px;}
.yb7{bottom:468.839812px;}
.y17{bottom:469.739812px;}
.ye0{bottom:477.479809px;}
.y68{bottom:482.339807px;}
.y33{bottom:483.779806px;}
.ya0{bottom:486.659805px;}
.y7c{bottom:497.279801px;}
.yc4{bottom:498.719801px;}
.yb6{bottom:499.799800px;}
.y16{bottom:500.879800px;}
.yd0{bottom:501.959799px;}
.y67{bottom:513.299795px;}
.y32{bottom:514.739794px;}
.y9f{bottom:517.799793px;}
.y7b{bottom:528.239789px;}
.yc3{bottom:529.859788px;}
.yb5{bottom:530.939788px;}
.y15{bottom:531.839787px;}
.y66{bottom:544.439782px;}
.y31{bottom:545.879782px;}
.ycf{bottom:548.039781px;}
.y9e{bottom:548.759780px;}
.yc2{bottom:560.819776px;}
.yb4{bottom:561.899775px;}
.y14{bottom:562.979775px;}
.y7a{bottom:574.319770px;}
.y30{bottom:576.839769px;}
.y9d{bottom:579.899768px;}
.y65{bottom:590.339764px;}
.yc1{bottom:591.959763px;}
.yb3{bottom:593.039763px;}
.yce{bottom:593.939762px;}
.y79{bottom:605.459758px;}
.y2f{bottom:607.979757px;}
.y13{bottom:609.059756px;}
.y9c{bottom:610.859756px;}
.y64{bottom:621.479751px;}
.yc0{bottom:622.919751px;}
.yb2{bottom:623.999750px;}
.y78{bottom:636.419745px;}
.y2e{bottom:638.939744px;}
.y12{bottom:640.019744px;}
.y9b{bottom:641.999743px;}
.y88{bottom:652.079739px;}
.y63{bottom:652.439739px;}
.ybf{bottom:654.059738px;}
.yb1{bottom:655.139738px;}
.y77{bottom:667.559733px;}
.y2d{bottom:670.079732px;}
.y11{bottom:671.159732px;}
.y62{bottom:683.579727px;}
.ybe{bottom:685.019726px;}
.yb0{bottom:686.099726px;}
.y76{bottom:698.519721px;}
.y2c{bottom:701.039720px;}
.y10{bottom:702.119719px;}
.y61{bottom:714.539714px;}
.ybd{bottom:716.159714px;}
.yaf{bottom:717.059713px;}
.y75{bottom:729.659708px;}
.y92{bottom:732.179707px;}
.yf{bottom:733.259707px;}
.y60{bottom:745.679702px;}
.y2b{bottom:747.119701px;}
.yae{bottom:748.199701px;}
.y74{bottom:760.619696px;}
.y91{bottom:763.139695px;}
.ye{bottom:764.219694px;}
.y2a{bottom:778.259689px;}
.y5f{bottom:791.759683px;}
.y90{bottom:794.279682px;}
.yd{bottom:795.359682px;}
.y29{bottom:809.219676px;}
.y5e{bottom:822.719671px;}
.y8f{bottom:825.239670px;}
.yc{bottom:826.319669px;}
.y28{bottom:840.359664px;}
.y5d{bottom:853.859658px;}
.y8e{bottom:856.379657px;}
.yb{bottom:857.459657px;}
.y27{bottom:871.319651px;}
.y46{bottom:872.399651px;}
.y47{bottom:880.679648px;}
.y5c{bottom:884.819646px;}
.yad{bottom:887.339645px;}
.ya{bottom:888.419645px;}
.y26{bottom:902.459639px;}
.yde{bottom:902.999639px;}
.y45{bottom:903.359639px;}
.ydf{bottom:911.279635px;}
.y5b{bottom:915.959634px;}
.yac{bottom:918.479633px;}
.y25{bottom:933.419627px;}
.y9{bottom:934.139626px;}
.y5a{bottom:946.919621px;}
.y43{bottom:949.439620px;}
.y44{bottom:957.719617px;}
.y24{bottom:964.559614px;}
.y59{bottom:978.059609px;}
.y8{bottom:980.219608px;}
.y42{bottom:980.579608px;}
.y23{bottom:995.519602px;}
.y58{bottom:1009.019596px;}
.y7{bottom:1026.299589px;}
.y22{bottom:1026.659589px;}
.yd9{bottom:1034.579586px;}
.y41{bottom:1034.939586px;}
.y57{bottom:1040.159584px;}
.y6{bottom:1057.259577px;}
.y21{bottom:1057.619577px;}
.y4f{bottom:1070.759572px;}
.y56{bottom:1071.119572px;}
.y50{bottom:1079.039568px;}
.y1{bottom:1108.919556px;}
.yda{bottom:1109.819556px;}
.h2{height:19.980000px;}
.h7{height:25.913662px;}
.h6{height:33.518307px;}
.h9{height:41.362015px;}
.h8{height:41.522679px;}
.h1{height:44.149201px;}
.h5{height:50.027324px;}
.h3{height:61.734350px;}
.h4{height:62.824194px;}
.h0{height:1263.000000px;}
.w2{width:0.180000px;}
.w1{width:16.740000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619465px;}
.x6{left:129.779948px;}
.xf{left:132.479947px;}
.x1c{left:152.639939px;}
.x1f{left:178.739900px;}
.xa{left:180.718581px;}
.x1a{left:267.659893px;}
.xd{left:274.679890px;}
.xe{left:280.799888px;}
.x19{left:289.082065px;}
.x7{left:291.960140px;}
.x1d{left:342.000574px;}
.xb{left:363.779854px;}
.xc{left:369.899852px;}
.x20{left:385.379328px;}
.x10{left:444.599822px;}
.x11{left:450.719820px;}
.x21{left:501.479799px;}
.x22{left:507.599797px;}
.x8{left:545.031639px;}
.x1e{left:551.159780px;}
.x9{left:599.580364px;}
.x18{left:609.299756px;}
.x14{left:629.639748px;}
.x15{left:635.759746px;}
.x16{left:638.639745px;}
.x17{left:644.759742px;}
.x12{left:701.099720px;}
.x13{left:707.219717px;}
.x2{left:738.539671px;}
.x4{left:748.620000px;}
.x1{left:755.279698px;}
.x1b{left:757.079697px;}
.x5{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:172.911398pt;}
.ws3{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:0.000000pt;}
._15{margin-left:-9.556810pt;}
._a{margin-left:-2.761456pt;}
._1{margin-left:-0.948566pt;}
._0{width:0.906590pt;}
._9{width:2.229791pt;}
._10{width:3.306876pt;}
._c{width:4.469548pt;}
._7{width:6.217310pt;}
._8{width:7.198585pt;}
._14{width:8.160726pt;}
._13{width:9.064844pt;}
._3{width:9.990015pt;}
._4{width:10.891187pt;}
._f{width:12.003050pt;}
._12{width:13.125768pt;}
._b{width:14.097786pt;}
._18{width:15.069466pt;}
._d{width:17.239377pt;}
._e{width:18.563962pt;}
._11{width:19.646248pt;}
._1a{width:20.547762pt;}
._1b{width:21.867226pt;}
._16{width:23.719975pt;}
._19{width:25.027756pt;}
._6{width:25.951680pt;}
._5{width:27.450154pt;}
._17{width:48.187895pt;}
._2{width:172.911291pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000025pt;}
.ydc{bottom:51.466646pt;}
.y3{bottom:52.106646pt;}
.ydd{bottom:65.386880pt;}
.y4{bottom:66.026880pt;}
.ydb{bottom:69.386639pt;}
.y2{bottom:70.026639pt;}
.y54{bottom:97.866894pt;}
.y40{bottom:98.026894pt;}
.yeb{bottom:98.186894pt;}
.y8d{bottom:100.906626pt;}
.y3f{bottom:104.746891pt;}
.yea{bottom:104.906891pt;}
.y73{bottom:111.786622pt;}
.y53{bottom:113.386888pt;}
.y4e{bottom:114.346888pt;}
.y3e{bottom:114.826887pt;}
.ye9{bottom:114.986887pt;}
.yab{bottom:115.786620pt;}
.yd8{bottom:118.666619pt;}
.y52{bottom:120.106885pt;}
.y4d{bottom:121.066885pt;}
.y87{bottom:125.066617pt;}
.ycd{bottom:126.506616pt;}
.y9a{bottom:128.266615pt;}
.y8c{bottom:128.426615pt;}
.y51{bottom:130.186881pt;}
.y4c{bottom:130.666881pt;}
.y4b{bottom:137.386612pt;}
.y72{bottom:139.306611pt;}
.ybc{bottom:140.746610pt;}
.y20{bottom:142.506610pt;}
.yaa{bottom:143.306609pt;}
.y4a{bottom:146.986608pt;}
.y55{bottom:150.346607pt;}
.y86{bottom:152.746606pt;}
.y49{bottom:153.706605pt;}
.ycc{bottom:154.026605pt;}
.y8b{bottom:156.106604pt;}
.yd7{bottom:159.626603pt;}
.y48{bottom:163.786601pt;}
.y71{bottom:166.986600pt;}
.ybb{bottom:168.266599pt;}
.y3c{bottom:169.226599pt;}
.y1f{bottom:170.186599pt;}
.ya9{bottom:170.986598pt;}
.y3d{bottom:176.586596pt;}
.y85{bottom:180.266595pt;}
.ycb{bottom:181.706594pt;}
.y8a{bottom:183.626593pt;}
.ye8{bottom:194.026589pt;}
.y70{bottom:194.506589pt;}
.yba{bottom:195.946588pt;}
.y3b{bottom:196.906588pt;}
.ya8{bottom:198.506587pt;}
.yd6{bottom:200.586586pt;}
.y84{bottom:207.946583pt;}
.yca{bottom:209.226583pt;}
.y99{bottom:210.186583pt;}
.y1e{bottom:211.146582pt;}
.y89{bottom:211.306582pt;}
.ye7{bottom:221.706578pt;}
.y6f{bottom:222.186578pt;}
.yb9{bottom:223.466577pt;}
.ya7{bottom:226.026576pt;}
.y83{bottom:235.466572pt;}
.yc9{bottom:236.906572pt;}
.y39{bottom:237.706572pt;}
.y1d{bottom:238.666571pt;}
.yd5{bottom:241.546570pt;}
.y3a{bottom:245.066569pt;}
.ye6{bottom:249.226567pt;}
.y6e{bottom:249.706567pt;}
.y98{bottom:251.146566pt;}
.ya6{bottom:253.706565pt;}
.y82{bottom:263.146561pt;}
.yc8{bottom:264.426561pt;}
.y38{bottom:265.386561pt;}
.y1c{bottom:266.346560pt;}
.ye5{bottom:276.906556pt;}
.yb8{bottom:278.666555pt;}
.ya5{bottom:281.226554pt;}
.yd4{bottom:282.346554pt;}
.y6d{bottom:290.666550pt;}
.y97{bottom:292.106550pt;}
.y81{bottom:304.106545pt;}
.ye4{bottom:304.426545pt;}
.y37{bottom:306.346544pt;}
.y1b{bottom:307.146544pt;}
.ya4{bottom:308.906543pt;}
.y6c{bottom:318.346539pt;}
.y96{bottom:319.626539pt;}
.yd3{bottom:323.306537pt;}
.y80{bottom:331.626534pt;}
.ye3{bottom:332.106534pt;}
.y36{bottom:333.866533pt;}
.y1a{bottom:334.826533pt;}
.y6b{bottom:345.866528pt;}
.y95{bottom:347.146528pt;}
.ya3{bottom:349.866527pt;}
.y7f{bottom:359.146523pt;}
.ye2{bottom:359.626523pt;}
.yc7{bottom:360.586522pt;}
.y35{bottom:361.546522pt;}
.y19{bottom:362.346522pt;}
.yd2{bottom:364.266521pt;}
.y6a{bottom:373.546517pt;}
.y94{bottom:374.826517pt;}
.ya2{bottom:377.386516pt;}
.y7e{bottom:386.826512pt;}
.ye1{bottom:387.306512pt;}
.yc6{bottom:388.106511pt;}
.y34{bottom:389.066511pt;}
.y18{bottom:390.026511pt;}
.y69{bottom:401.066506pt;}
.y93{bottom:402.346506pt;}
.ya1{bottom:405.066505pt;}
.yd1{bottom:405.226505pt;}
.y7d{bottom:414.346501pt;}
.yc5{bottom:415.786500pt;}
.yb7{bottom:416.746500pt;}
.y17{bottom:417.546500pt;}
.ye0{bottom:424.426497pt;}
.y68{bottom:428.746495pt;}
.y33{bottom:430.026495pt;}
.ya0{bottom:432.586494pt;}
.y7c{bottom:442.026490pt;}
.yc4{bottom:443.306489pt;}
.yb6{bottom:444.266489pt;}
.y16{bottom:445.226489pt;}
.yd0{bottom:446.186488pt;}
.y67{bottom:456.266484pt;}
.y32{bottom:457.546484pt;}
.y9f{bottom:460.266483pt;}
.y7b{bottom:469.546479pt;}
.yc3{bottom:470.986478pt;}
.yb5{bottom:471.946478pt;}
.y15{bottom:472.746478pt;}
.y66{bottom:483.946473pt;}
.y31{bottom:485.226473pt;}
.ycf{bottom:487.146472pt;}
.y9e{bottom:487.786472pt;}
.yc2{bottom:498.506467pt;}
.yb4{bottom:499.466467pt;}
.y14{bottom:500.426466pt;}
.y7a{bottom:510.506462pt;}
.y30{bottom:512.746462pt;}
.y9d{bottom:515.466460pt;}
.y65{bottom:524.746457pt;}
.yc1{bottom:526.186456pt;}
.yb3{bottom:527.146456pt;}
.yce{bottom:527.946455pt;}
.y79{bottom:538.186451pt;}
.y2f{bottom:540.426450pt;}
.y13{bottom:541.386450pt;}
.y9c{bottom:542.986449pt;}
.y64{bottom:552.426446pt;}
.yc0{bottom:553.706445pt;}
.yb2{bottom:554.666445pt;}
.y78{bottom:565.706440pt;}
.y2e{bottom:567.946439pt;}
.y12{bottom:568.906439pt;}
.y9b{bottom:570.666438pt;}
.y88{bottom:579.626435pt;}
.y63{bottom:579.946435pt;}
.ybf{bottom:581.386434pt;}
.yb1{bottom:582.346434pt;}
.y77{bottom:593.386429pt;}
.y2d{bottom:595.626428pt;}
.y11{bottom:596.586428pt;}
.y62{bottom:607.626424pt;}
.ybe{bottom:608.906423pt;}
.yb0{bottom:609.866423pt;}
.y76{bottom:620.906418pt;}
.y2c{bottom:623.146417pt;}
.y10{bottom:624.106417pt;}
.y61{bottom:635.146413pt;}
.ybd{bottom:636.586412pt;}
.yaf{bottom:637.386412pt;}
.y75{bottom:648.586407pt;}
.y92{bottom:650.826406pt;}
.yf{bottom:651.786406pt;}
.y60{bottom:662.826402pt;}
.y2b{bottom:664.106401pt;}
.yae{bottom:665.066401pt;}
.y74{bottom:676.106396pt;}
.y91{bottom:678.346395pt;}
.ye{bottom:679.306395pt;}
.y2a{bottom:691.786390pt;}
.y5f{bottom:703.786385pt;}
.y90{bottom:706.026384pt;}
.yd{bottom:706.986384pt;}
.y29{bottom:719.306379pt;}
.y5e{bottom:731.306374pt;}
.y8f{bottom:733.546373pt;}
.yc{bottom:734.506373pt;}
.y28{bottom:746.986368pt;}
.y5d{bottom:758.986363pt;}
.y8e{bottom:761.226362pt;}
.yb{bottom:762.186362pt;}
.y27{bottom:774.506357pt;}
.y46{bottom:775.466356pt;}
.y47{bottom:782.826354pt;}
.y5c{bottom:786.506352pt;}
.yad{bottom:788.746351pt;}
.ya{bottom:789.706351pt;}
.y26{bottom:802.186346pt;}
.yde{bottom:802.666346pt;}
.y45{bottom:802.986345pt;}
.ydf{bottom:810.026343pt;}
.y5b{bottom:814.186341pt;}
.yac{bottom:816.426340pt;}
.y25{bottom:829.706335pt;}
.y9{bottom:830.346335pt;}
.y5a{bottom:841.706330pt;}
.y43{bottom:843.946329pt;}
.y44{bottom:851.306326pt;}
.y24{bottom:857.386324pt;}
.y59{bottom:869.386319pt;}
.y8{bottom:871.306318pt;}
.y42{bottom:871.626318pt;}
.y23{bottom:884.906313pt;}
.y58{bottom:896.906308pt;}
.y7{bottom:912.266302pt;}
.y22{bottom:912.586302pt;}
.yd9{bottom:919.626299pt;}
.y41{bottom:919.946299pt;}
.y57{bottom:924.586297pt;}
.y6{bottom:939.786291pt;}
.y21{bottom:940.106291pt;}
.y4f{bottom:951.786286pt;}
.y56{bottom:952.106286pt;}
.y50{bottom:959.146283pt;}
.y1{bottom:985.706272pt;}
.yda{bottom:986.506272pt;}
.h2{height:17.760000pt;}
.h7{height:23.034366pt;}
.h6{height:29.794051pt;}
.h9{height:36.766235pt;}
.h8{height:36.909048pt;}
.h1{height:39.243734pt;}
.h5{height:44.468732pt;}
.h3{height:54.874978pt;}
.h4{height:55.843728pt;}
.h0{height:1122.666667pt;}
.w2{width:0.160000pt;}
.w1{width:14.880000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439524pt;}
.x6{left:115.359954pt;}
.xf{left:117.759953pt;}
.x1c{left:135.679946pt;}
.x1f{left:158.879911pt;}
.xa{left:160.638739pt;}
.x1a{left:237.919905pt;}
.xd{left:244.159902pt;}
.xe{left:249.599900pt;}
.x19{left:256.961836pt;}
.x7{left:259.520125pt;}
.x1d{left:304.000511pt;}
.xb{left:323.359871pt;}
.xc{left:328.799868pt;}
.x20{left:342.559403pt;}
.x10{left:395.199842pt;}
.x11{left:400.639840pt;}
.x21{left:445.759822pt;}
.x22{left:451.199820pt;}
.x8{left:484.472568pt;}
.x1e{left:489.919804pt;}
.x9{left:532.960324pt;}
.x18{left:541.599783pt;}
.x14{left:559.679776pt;}
.x15{left:565.119774pt;}
.x16{left:567.679773pt;}
.x17{left:573.119771pt;}
.x12{left:623.199751pt;}
.x13{left:628.639749pt;}
.x2{left:656.479708pt;}
.x4{left:665.440000pt;}
.x1{left:671.359731pt;}
.x1b{left:672.959731pt;}
.x5{left:680.320000pt;}
}

