
    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_94c6bcddd2f7455aa5606254.woff')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_a2798575460d6c19bce0397f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_10a635b44c0fa5267cf9559c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.057129;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_5a148a32e71f4f628a8e739e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.714000;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_e7d6a46774970768b7674dd7.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9435cdd1e2829749929be98d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_faa9ef5e0c1cefe927a8d27d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.057129;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);}
.v6{vertical-align:-23.976000px;}
.v3{vertical-align:-11.988000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.006000px;}
.v2{vertical-align:20.579400px;}
.v5{vertical-align:23.972400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.650000px;}
.ls4{letter-spacing:1.920000px;}
.ls0{letter-spacing:2.250000px;}
.ls3{letter-spacing:2.688000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-152.250000px;}
.ws3{word-spacing:-24.000000px;}
.ws7{word-spacing:-15.450000px;}
.ws1{word-spacing:-15.000000px;}
.ws6{word-spacing:-10.494000px;}
.ws4{word-spacing:-9.007350px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:474.344400px;}
._4{margin-left:-7.698600px;}
._2{margin-left:-4.968000px;}
._3{margin-left:-3.641400px;}
._0{margin-left:-2.250000px;}
._1{margin-left:-1.206600px;}
._9{width:1.050600px;}
._7{width:2.163000px;}
._8{width:3.275400px;}
._5{width:5.129400px;}
._6{width:6.427200px;}
._a{width:8.404800px;}
._b{width:9.888000px;}
._c{width:13.966800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:20.988000px;}
.fs8{font-size:36.029400px;}
.fsb{font-size:41.976000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:54.209400px;}
.y9{bottom:64.709400px;}
.y7f{bottom:76.499850px;}
.y55{bottom:76.500000px;}
.ya8{bottom:76.500150px;}
.yfb{bottom:79.496850px;}
.yfa{bottom:89.999850px;}
.y54{bottom:90.000000px;}
.y7e{bottom:92.996850px;}
.ya7{bottom:92.997150px;}
.y2b{bottom:94.195500px;}
.ye4{bottom:103.499850px;}
.y7d{bottom:106.496850px;}
.y53{bottom:106.497000px;}
.ye3{bottom:116.999850px;}
.yf9{bottom:119.996850px;}
.ya6{bottom:126.656250px;}
.ye2{bottom:130.499850px;}
.yf8{bottom:133.496850px;}
.y2a{bottom:135.532500px;}
.y7c{bottom:142.135950px;}
.ya5{bottom:145.196250px;}
.y52{bottom:145.571250px;}
.ye1{bottom:146.996850px;}
.y29{bottom:154.072500px;}
.ye0{bottom:160.496850px;}
.y7b{bottom:160.675950px;}
.ya4{bottom:163.736250px;}
.y51{bottom:164.111250px;}
.y28{bottom:172.612500px;}
.yf7{bottom:173.095950px;}
.y7a{bottom:179.215950px;}
.ya3{bottom:182.276250px;}
.y50{bottom:182.651250px;}
.y27{bottom:191.152500px;}
.yf6{bottom:191.635950px;}
.ydf{bottom:194.695950px;}
.y79{bottom:197.755950px;}
.ya2{bottom:200.816250px;}
.y4f{bottom:201.191250px;}
.y26{bottom:209.692500px;}
.yf5{bottom:210.175950px;}
.yde{bottom:213.235950px;}
.y78{bottom:216.295950px;}
.ya1{bottom:219.356250px;}
.y4e{bottom:219.731250px;}
.y25{bottom:228.232500px;}
.yf4{bottom:228.715950px;}
.ydd{bottom:231.775950px;}
.y77{bottom:234.835950px;}
.ya0{bottom:237.896250px;}
.y4d{bottom:238.271250px;}
.y24{bottom:246.772500px;}
.yf3{bottom:247.257000px;}
.ydc{bottom:250.317000px;}
.y76{bottom:253.375950px;}
.yc1{bottom:256.436250px;}
.y4c{bottom:256.811250px;}
.y23{bottom:265.312500px;}
.yf2{bottom:268.856100px;}
.y75{bottom:271.915950px;}
.ydb{bottom:271.916100px;}
.yc0{bottom:274.976250px;}
.y9f{bottom:274.977150px;}
.y4b{bottom:275.351250px;}
.y22{bottom:283.852500px;}
.yf1{bottom:287.396100px;}
.y74{bottom:290.455950px;}
.yda{bottom:290.456100px;}
.ybf{bottom:293.516250px;}
.y4a{bottom:293.891250px;}
.y9e{bottom:296.576250px;}
.y21{bottom:302.392500px;}
.yf0{bottom:305.936100px;}
.y73{bottom:308.995950px;}
.yd9{bottom:308.996100px;}
.ybe{bottom:312.056250px;}
.y49{bottom:312.431250px;}
.y9d{bottom:315.116250px;}
.y20{bottom:320.932500px;}
.yef{bottom:324.476100px;}
.y72{bottom:327.535950px;}
.yd8{bottom:327.536100px;}
.ybd{bottom:330.596250px;}
.y48{bottom:330.971250px;}
.y9c{bottom:333.656250px;}
.y1f{bottom:339.472500px;}
.yee{bottom:343.016100px;}
.y71{bottom:346.075950px;}
.yd7{bottom:346.076100px;}
.ybc{bottom:349.136250px;}
.y47{bottom:349.511250px;}
.y9b{bottom:352.196250px;}
.y1e{bottom:358.012500px;}
.yed{bottom:361.556100px;}
.y70{bottom:364.615950px;}
.yd6{bottom:364.616850px;}
.ybb{bottom:367.676250px;}
.y46{bottom:368.051250px;}
.y9a{bottom:370.736250px;}
.y1d{bottom:376.552500px;}
.yec{bottom:380.096100px;}
.y6f{bottom:383.155950px;}
.yd5{bottom:386.215950px;}
.yba{bottom:386.216250px;}
.y45{bottom:386.591250px;}
.y99{bottom:389.276250px;}
.y1c{bottom:395.092500px;}
.yeb{bottom:398.636850px;}
.y6e{bottom:401.695950px;}
.yd4{bottom:404.755950px;}
.yb9{bottom:404.756250px;}
.y44{bottom:405.131250px;}
.y98{bottom:407.816250px;}
.y1b{bottom:413.632500px;}
.y6d{bottom:420.235950px;}
.yd3{bottom:423.295950px;}
.yb8{bottom:423.296250px;}
.y43{bottom:423.672150px;}
.y97{bottom:426.356250px;}
.y1a{bottom:432.172500px;}
.y6c{bottom:438.775950px;}
.yd2{bottom:441.835950px;}
.yb7{bottom:441.836250px;}
.y96{bottom:444.896250px;}
.y42{bottom:445.271250px;}
.y19{bottom:450.712500px;}
.y6b{bottom:457.315950px;}
.yd1{bottom:460.375950px;}
.yb6{bottom:460.376250px;}
.y95{bottom:463.436250px;}
.y41{bottom:463.811250px;}
.y18{bottom:469.252500px;}
.y6a{bottom:475.855950px;}
.yd0{bottom:478.915950px;}
.yb5{bottom:478.916250px;}
.y94{bottom:481.976250px;}
.y40{bottom:482.351250px;}
.y17{bottom:487.792500px;}
.y7{bottom:490.644900px;}
.y69{bottom:494.395950px;}
.ycf{bottom:497.455950px;}
.yb4{bottom:497.456250px;}
.y93{bottom:500.516250px;}
.y3f{bottom:500.891250px;}
.y16{bottom:506.332500px;}
.y6{bottom:506.844900px;}
.y68{bottom:512.935950px;}
.yce{bottom:515.995950px;}
.yb3{bottom:515.996250px;}
.y92{bottom:519.056250px;}
.y3e{bottom:519.431250px;}
.y5{bottom:523.044900px;}
.y15{bottom:524.872500px;}
.y67{bottom:531.475950px;}
.ycd{bottom:534.535950px;}
.yb2{bottom:534.536250px;}
.y91{bottom:537.596250px;}
.y3d{bottom:537.971250px;}
.y4{bottom:539.244900px;}
.y14{bottom:543.412500px;}
.y66{bottom:550.015950px;}
.ycc{bottom:553.075950px;}
.yb1{bottom:553.076250px;}
.y90{bottom:556.136250px;}
.y3c{bottom:556.511250px;}
.y13{bottom:561.952500px;}
.y65{bottom:568.555950px;}
.ycb{bottom:571.615950px;}
.yb0{bottom:571.616250px;}
.y8f{bottom:574.676250px;}
.y3b{bottom:575.051250px;}
.y12{bottom:580.492500px;}
.y64{bottom:587.095950px;}
.yaf{bottom:590.156250px;}
.yca{bottom:590.156850px;}
.y8e{bottom:593.216250px;}
.y3a{bottom:593.591250px;}
.y11{bottom:599.032500px;}
.y63{bottom:605.635950px;}
.yae{bottom:608.696250px;}
.yc9{bottom:611.755950px;}
.y8d{bottom:611.756250px;}
.y39{bottom:612.131250px;}
.y10{bottom:617.572500px;}
.y62{bottom:624.175950px;}
.yad{bottom:627.236250px;}
.yc8{bottom:630.295950px;}
.y8c{bottom:630.296250px;}
.y38{bottom:630.671250px;}
.yf{bottom:636.112500px;}
.y61{bottom:642.715950px;}
.yac{bottom:645.776250px;}
.yc7{bottom:648.835950px;}
.y8b{bottom:648.836250px;}
.y37{bottom:649.211250px;}
.y60{bottom:661.256850px;}
.yea{bottom:661.257000px;}
.yab{bottom:664.316250px;}
.y3{bottom:666.695700px;}
.yc6{bottom:667.375950px;}
.y8a{bottom:667.376250px;}
.y36{bottom:667.751250px;}
.y5f{bottom:682.855950px;}
.ye9{bottom:682.856100px;}
.yaa{bottom:682.857150px;}
.yc5{bottom:685.915950px;}
.y89{bottom:685.916250px;}
.y35{bottom:686.291250px;}
.y2{bottom:687.997200px;}
.y5e{bottom:701.395950px;}
.ye8{bottom:701.396100px;}
.yc4{bottom:704.455950px;}
.y88{bottom:704.456250px;}
.y34{bottom:704.831250px;}
.ye{bottom:708.061500px;}
.ye7{bottom:719.936100px;}
.y5d{bottom:719.936850px;}
.y1{bottom:721.297200px;}
.yc3{bottom:722.995950px;}
.y87{bottom:722.996250px;}
.y33{bottom:723.371250px;}
.yd{bottom:734.752500px;}
.ye6{bottom:738.476850px;}
.y5c{bottom:741.535950px;}
.y86{bottom:741.536250px;}
.y32{bottom:741.911250px;}
.y5b{bottom:760.075950px;}
.y85{bottom:760.076250px;}
.y31{bottom:760.451250px;}
.y5a{bottom:778.615950px;}
.y84{bottom:778.616250px;}
.y30{bottom:778.991250px;}
.yc{bottom:792.946350px;}
.y59{bottom:797.155950px;}
.y83{bottom:797.156250px;}
.y2f{bottom:797.531250px;}
.y58{bottom:815.695950px;}
.y82{bottom:815.696250px;}
.y2e{bottom:816.071250px;}
.yb{bottom:822.202350px;}
.y57{bottom:834.235950px;}
.y81{bottom:834.236250px;}
.y2d{bottom:834.611250px;}
.y8{bottom:878.310600px;}
.ye5{bottom:905.755500px;}
.y56{bottom:905.755650px;}
.ya9{bottom:905.755800px;}
.yc2{bottom:906.525000px;}
.y2c{bottom:906.525150px;}
.y80{bottom:906.525300px;}
.hd{height:21.363563px;}
.h8{height:29.182617px;}
.h10{height:33.351562px;}
.h11{height:37.494141px;}
.he{height:37.520508px;}
.h5{height:39.102539px;}
.h6{height:42.108398px;}
.hb{height:42.940137px;}
.hc{height:45.613500px;}
.h3{height:47.791992px;}
.h13{height:53.137741px;}
.hf{height:53.138341px;}
.h12{height:53.138941px;}
.ha{height:58.365234px;}
.h4{height:64.793109px;}
.h7{height:67.200000px;}
.h9{height:74.859375px;}
.h2{height:102.246094px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x7{left:69.094500px;}
.x1{left:76.663050px;}
.x6{left:85.066800px;}
.x4{left:90.694500px;}
.x3{left:106.663050px;}
.x9{left:186.766350px;}
.x2{left:227.088900px;}
.x8{left:541.222350px;}
@media print{
.v6{vertical-align:-21.312000pt;}
.v3{vertical-align:-10.656000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.005333pt;}
.v2{vertical-align:18.292800pt;}
.v5{vertical-align:21.308800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.466667pt;}
.ls4{letter-spacing:1.706667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls3{letter-spacing:2.389333pt;}
.ws0{word-spacing:-135.333333pt;}
.ws3{word-spacing:-21.333333pt;}
.ws7{word-spacing:-13.733333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6{word-spacing:-9.328000pt;}
.ws4{word-spacing:-8.006533pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:421.639467pt;}
._4{margin-left:-6.843200pt;}
._2{margin-left:-4.416000pt;}
._3{margin-left:-3.236800pt;}
._0{margin-left:-2.000000pt;}
._1{margin-left:-1.072533pt;}
._9{width:0.933867pt;}
._7{width:1.922667pt;}
._8{width:2.911467pt;}
._5{width:4.559467pt;}
._6{width:5.713067pt;}
._a{width:7.470933pt;}
._b{width:8.789333pt;}
._c{width:12.414933pt;}
.fs9{font-size:18.656000pt;}
.fs8{font-size:32.026133pt;}
.fsb{font-size:37.312000pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:48.186133pt;}
.y9{bottom:57.519467pt;}
.y7f{bottom:67.999867pt;}
.y55{bottom:68.000000pt;}
.ya8{bottom:68.000133pt;}
.yfb{bottom:70.663867pt;}
.yfa{bottom:79.999867pt;}
.y54{bottom:80.000000pt;}
.y7e{bottom:82.663867pt;}
.ya7{bottom:82.664133pt;}
.y2b{bottom:83.729333pt;}
.ye4{bottom:91.999867pt;}
.y7d{bottom:94.663867pt;}
.y53{bottom:94.664000pt;}
.ye3{bottom:103.999867pt;}
.yf9{bottom:106.663867pt;}
.ya6{bottom:112.583333pt;}
.ye2{bottom:115.999867pt;}
.yf8{bottom:118.663867pt;}
.y2a{bottom:120.473333pt;}
.y7c{bottom:126.343067pt;}
.ya5{bottom:129.063333pt;}
.y52{bottom:129.396667pt;}
.ye1{bottom:130.663867pt;}
.y29{bottom:136.953333pt;}
.ye0{bottom:142.663867pt;}
.y7b{bottom:142.823067pt;}
.ya4{bottom:145.543333pt;}
.y51{bottom:145.876667pt;}
.y28{bottom:153.433333pt;}
.yf7{bottom:153.863067pt;}
.y7a{bottom:159.303067pt;}
.ya3{bottom:162.023333pt;}
.y50{bottom:162.356667pt;}
.y27{bottom:169.913333pt;}
.yf6{bottom:170.343067pt;}
.ydf{bottom:173.063067pt;}
.y79{bottom:175.783067pt;}
.ya2{bottom:178.503333pt;}
.y4f{bottom:178.836667pt;}
.y26{bottom:186.393333pt;}
.yf5{bottom:186.823067pt;}
.yde{bottom:189.543067pt;}
.y78{bottom:192.263067pt;}
.ya1{bottom:194.983333pt;}
.y4e{bottom:195.316667pt;}
.y25{bottom:202.873333pt;}
.yf4{bottom:203.303067pt;}
.ydd{bottom:206.023067pt;}
.y77{bottom:208.743067pt;}
.ya0{bottom:211.463333pt;}
.y4d{bottom:211.796667pt;}
.y24{bottom:219.353333pt;}
.yf3{bottom:219.784000pt;}
.ydc{bottom:222.504000pt;}
.y76{bottom:225.223067pt;}
.yc1{bottom:227.943333pt;}
.y4c{bottom:228.276667pt;}
.y23{bottom:235.833333pt;}
.yf2{bottom:238.983200pt;}
.y75{bottom:241.703067pt;}
.ydb{bottom:241.703200pt;}
.yc0{bottom:244.423333pt;}
.y9f{bottom:244.424133pt;}
.y4b{bottom:244.756667pt;}
.y22{bottom:252.313333pt;}
.yf1{bottom:255.463200pt;}
.y74{bottom:258.183067pt;}
.yda{bottom:258.183200pt;}
.ybf{bottom:260.903333pt;}
.y4a{bottom:261.236667pt;}
.y9e{bottom:263.623333pt;}
.y21{bottom:268.793333pt;}
.yf0{bottom:271.943200pt;}
.y73{bottom:274.663067pt;}
.yd9{bottom:274.663200pt;}
.ybe{bottom:277.383333pt;}
.y49{bottom:277.716667pt;}
.y9d{bottom:280.103333pt;}
.y20{bottom:285.273333pt;}
.yef{bottom:288.423200pt;}
.y72{bottom:291.143067pt;}
.yd8{bottom:291.143200pt;}
.ybd{bottom:293.863333pt;}
.y48{bottom:294.196667pt;}
.y9c{bottom:296.583333pt;}
.y1f{bottom:301.753333pt;}
.yee{bottom:304.903200pt;}
.y71{bottom:307.623067pt;}
.yd7{bottom:307.623200pt;}
.ybc{bottom:310.343333pt;}
.y47{bottom:310.676667pt;}
.y9b{bottom:313.063333pt;}
.y1e{bottom:318.233333pt;}
.yed{bottom:321.383200pt;}
.y70{bottom:324.103067pt;}
.yd6{bottom:324.103867pt;}
.ybb{bottom:326.823333pt;}
.y46{bottom:327.156667pt;}
.y9a{bottom:329.543333pt;}
.y1d{bottom:334.713333pt;}
.yec{bottom:337.863200pt;}
.y6f{bottom:340.583067pt;}
.yd5{bottom:343.303067pt;}
.yba{bottom:343.303333pt;}
.y45{bottom:343.636667pt;}
.y99{bottom:346.023333pt;}
.y1c{bottom:351.193333pt;}
.yeb{bottom:354.343867pt;}
.y6e{bottom:357.063067pt;}
.yd4{bottom:359.783067pt;}
.yb9{bottom:359.783333pt;}
.y44{bottom:360.116667pt;}
.y98{bottom:362.503333pt;}
.y1b{bottom:367.673333pt;}
.y6d{bottom:373.543067pt;}
.yd3{bottom:376.263067pt;}
.yb8{bottom:376.263333pt;}
.y43{bottom:376.597467pt;}
.y97{bottom:378.983333pt;}
.y1a{bottom:384.153333pt;}
.y6c{bottom:390.023067pt;}
.yd2{bottom:392.743067pt;}
.yb7{bottom:392.743333pt;}
.y96{bottom:395.463333pt;}
.y42{bottom:395.796667pt;}
.y19{bottom:400.633333pt;}
.y6b{bottom:406.503067pt;}
.yd1{bottom:409.223067pt;}
.yb6{bottom:409.223333pt;}
.y95{bottom:411.943333pt;}
.y41{bottom:412.276667pt;}
.y18{bottom:417.113333pt;}
.y6a{bottom:422.983067pt;}
.yd0{bottom:425.703067pt;}
.yb5{bottom:425.703333pt;}
.y94{bottom:428.423333pt;}
.y40{bottom:428.756667pt;}
.y17{bottom:433.593333pt;}
.y7{bottom:436.128800pt;}
.y69{bottom:439.463067pt;}
.ycf{bottom:442.183067pt;}
.yb4{bottom:442.183333pt;}
.y93{bottom:444.903333pt;}
.y3f{bottom:445.236667pt;}
.y16{bottom:450.073333pt;}
.y6{bottom:450.528800pt;}
.y68{bottom:455.943067pt;}
.yce{bottom:458.663067pt;}
.yb3{bottom:458.663333pt;}
.y92{bottom:461.383333pt;}
.y3e{bottom:461.716667pt;}
.y5{bottom:464.928800pt;}
.y15{bottom:466.553333pt;}
.y67{bottom:472.423067pt;}
.ycd{bottom:475.143067pt;}
.yb2{bottom:475.143333pt;}
.y91{bottom:477.863333pt;}
.y3d{bottom:478.196667pt;}
.y4{bottom:479.328800pt;}
.y14{bottom:483.033333pt;}
.y66{bottom:488.903067pt;}
.ycc{bottom:491.623067pt;}
.yb1{bottom:491.623333pt;}
.y90{bottom:494.343333pt;}
.y3c{bottom:494.676667pt;}
.y13{bottom:499.513333pt;}
.y65{bottom:505.383067pt;}
.ycb{bottom:508.103067pt;}
.yb0{bottom:508.103333pt;}
.y8f{bottom:510.823333pt;}
.y3b{bottom:511.156667pt;}
.y12{bottom:515.993333pt;}
.y64{bottom:521.863067pt;}
.yaf{bottom:524.583333pt;}
.yca{bottom:524.583867pt;}
.y8e{bottom:527.303333pt;}
.y3a{bottom:527.636667pt;}
.y11{bottom:532.473333pt;}
.y63{bottom:538.343067pt;}
.yae{bottom:541.063333pt;}
.yc9{bottom:543.783067pt;}
.y8d{bottom:543.783333pt;}
.y39{bottom:544.116667pt;}
.y10{bottom:548.953333pt;}
.y62{bottom:554.823067pt;}
.yad{bottom:557.543333pt;}
.yc8{bottom:560.263067pt;}
.y8c{bottom:560.263333pt;}
.y38{bottom:560.596667pt;}
.yf{bottom:565.433333pt;}
.y61{bottom:571.303067pt;}
.yac{bottom:574.023333pt;}
.yc7{bottom:576.743067pt;}
.y8b{bottom:576.743333pt;}
.y37{bottom:577.076667pt;}
.y60{bottom:587.783867pt;}
.yea{bottom:587.784000pt;}
.yab{bottom:590.503333pt;}
.y3{bottom:592.618400pt;}
.yc6{bottom:593.223067pt;}
.y8a{bottom:593.223333pt;}
.y36{bottom:593.556667pt;}
.y5f{bottom:606.983067pt;}
.ye9{bottom:606.983200pt;}
.yaa{bottom:606.984133pt;}
.yc5{bottom:609.703067pt;}
.y89{bottom:609.703333pt;}
.y35{bottom:610.036667pt;}
.y2{bottom:611.553067pt;}
.y5e{bottom:623.463067pt;}
.ye8{bottom:623.463200pt;}
.yc4{bottom:626.183067pt;}
.y88{bottom:626.183333pt;}
.y34{bottom:626.516667pt;}
.ye{bottom:629.388000pt;}
.ye7{bottom:639.943200pt;}
.y5d{bottom:639.943867pt;}
.y1{bottom:641.153067pt;}
.yc3{bottom:642.663067pt;}
.y87{bottom:642.663333pt;}
.y33{bottom:642.996667pt;}
.yd{bottom:653.113333pt;}
.ye6{bottom:656.423867pt;}
.y5c{bottom:659.143067pt;}
.y86{bottom:659.143333pt;}
.y32{bottom:659.476667pt;}
.y5b{bottom:675.623067pt;}
.y85{bottom:675.623333pt;}
.y31{bottom:675.956667pt;}
.y5a{bottom:692.103067pt;}
.y84{bottom:692.103333pt;}
.y30{bottom:692.436667pt;}
.yc{bottom:704.841200pt;}
.y59{bottom:708.583067pt;}
.y83{bottom:708.583333pt;}
.y2f{bottom:708.916667pt;}
.y58{bottom:725.063067pt;}
.y82{bottom:725.063333pt;}
.y2e{bottom:725.396667pt;}
.yb{bottom:730.846533pt;}
.y57{bottom:741.543067pt;}
.y81{bottom:741.543333pt;}
.y2d{bottom:741.876667pt;}
.y8{bottom:780.720533pt;}
.ye5{bottom:805.116000pt;}
.y56{bottom:805.116133pt;}
.ya9{bottom:805.116267pt;}
.yc2{bottom:805.800000pt;}
.y2c{bottom:805.800133pt;}
.y80{bottom:805.800267pt;}
.hd{height:18.989833pt;}
.h8{height:25.940104pt;}
.h10{height:29.645833pt;}
.h11{height:33.328125pt;}
.he{height:33.351562pt;}
.h5{height:34.757812pt;}
.h6{height:37.429688pt;}
.hb{height:38.169010pt;}
.hc{height:40.545333pt;}
.h3{height:42.481771pt;}
.h13{height:47.233548pt;}
.hf{height:47.234081pt;}
.h12{height:47.234615pt;}
.ha{height:51.880208pt;}
.h4{height:57.593875pt;}
.h7{height:59.733333pt;}
.h9{height:66.541667pt;}
.h2{height:90.885417pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x7{left:61.417333pt;}
.x1{left:68.144933pt;}
.x6{left:75.614933pt;}
.x4{left:80.617333pt;}
.x3{left:94.811600pt;}
.x9{left:166.014533pt;}
.x2{left:201.856800pt;}
.x8{left:481.086533pt;}
}

