
    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_c108752a40b495eb405d65fb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5a48282b58bc9b516d13f5ab.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e92d58dc853895dc624f6597.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_5c7d6b8b412af665f0ee6dd8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ee6c23443ef08dc3b97fb859.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901855;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_febc55740a07ba2b1f32cbeb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.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);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.168014px;}
.ls6{letter-spacing:17.265653px;}
.ls1{letter-spacing:34.015846px;}
.ls4{letter-spacing:64.273774px;}
.ls5{letter-spacing:64.994374px;}
.ls0{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;}
}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.059995px;}
.ws3{word-spacing:-9.719996px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-2.325132px;}
._1{margin-left:-1.257018px;}
._2{width:1.089460px;}
._18{width:2.091447px;}
._5{width:3.091672px;}
._c{width:4.686366px;}
._6{width:6.119299px;}
._7{width:7.206817px;}
._e{width:8.469943px;}
._16{width:9.564809px;}
._4{width:11.160696px;}
._3{width:12.289774px;}
._8{width:13.482860px;}
._9{width:15.140484px;}
._15{width:16.506506px;}
._22{width:17.653321px;}
._f{width:19.030431px;}
._10{width:20.034071px;}
._a{width:22.072257px;}
._b{width:23.512013px;}
._d{width:24.558397px;}
._20{width:25.713366px;}
._1e{width:26.955108px;}
._1c{width:28.332960px;}
._1d{width:29.452467px;}
._19{width:31.344710px;}
._21{width:32.412489px;}
._17{width:33.739772px;}
._1a{width:36.095649px;}
._1b{width:37.385148px;}
._24{width:38.408794px;}
._13{width:55.064980px;}
._14{width:56.211176px;}
._1f{width:57.776568px;}
._12{width:194.525202px;}
._23{width:1221.851511px;}
._0{width:1239.863504px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.720277px;}
.y59{bottom:110.099956px;}
.y5f{bottom:110.100256px;}
.y73{bottom:116.940253px;}
.y25{bottom:126.119950px;}
.y58{bottom:127.379949px;}
.y5e{bottom:127.380249px;}
.y72{bottom:128.099949px;}
.y94{bottom:128.100249px;}
.y10a{bottom:128.999948px;}
.y48{bottom:131.339947px;}
.ye4{bottom:134.220246px;}
.yf8{bottom:134.399946px;}
.y142{bottom:136.559945px;}
.y57{bottom:144.659942px;}
.y5d{bottom:144.660242px;}
.ye3{bottom:145.379942px;}
.y93{bottom:149.699940px;}
.y5c{bottom:151.499939px;}
.y109{bottom:154.919938px;}
.y24{bottom:157.259937px;}
.y56{bottom:161.939935px;}
.y47{bottom:162.299935px;}
.yf7{bottom:162.479935px;}
.y5b{bottom:162.659935px;}
.y71{bottom:167.519933px;}
.y55{bottom:168.779932px;}
.y92{bottom:175.619930px;}
.y130{bottom:177.959929px;}
.ybb{bottom:179.219928px;}
.y54{bottom:179.939928px;}
.y108{bottom:180.839928px;}
.y127{bottom:186.059926px;}
.y23{bottom:188.219925px;}
.y46{bottom:193.439923px;}
.yba{bottom:196.499921px;}
.y70{bottom:198.659921px;}
.y91{bottom:201.539919px;}
.y107{bottom:206.579917px;}
.y53{bottom:208.919916px;}
.yb9{bottom:213.599915px;}
.y22{bottom:219.359912px;}
.yb8{bottom:220.439912px;}
.y45{bottom:224.399910px;}
.yf6{bottom:224.579910px;}
.y90{bottom:227.279909px;}
.y6f{bottom:229.619908px;}
.yb7{bottom:230.879908px;}
.y126{bottom:231.599907px;}
.y106{bottom:232.499907px;}
.yb6{bottom:237.719905px;}
.y52{bottom:240.059904px;}
.yd5{bottom:248.159901px;}
.yb5{bottom:248.879900px;}
.y21{bottom:250.319900px;}
.y44{bottom:253.199899px;}
.yd4{bottom:254.999898px;}
.yf5{bottom:255.539898px;}
.y105{bottom:258.419897px;}
.y6e{bottom:260.579896px;}
.yd3{bottom:265.439894px;}
.y125{bottom:265.799894px;}
.y51{bottom:271.019892px;}
.y43{bottom:279.119888px;}
.y20{bottom:281.279887px;}
.yd2{bottom:282.719887px;}
.y104{bottom:284.159886px;}
.yf4{bottom:286.679885px;}
.yd1{bottom:289.559884px;}
.y6d{bottom:291.719883px;}
.yb4{bottom:294.599882px;}
.y124{bottom:296.939881px;}
.yd0{bottom:300.719880px;}
.y50{bottom:301.979879px;}
.y42{bottom:304.859878px;}
.y8f{bottom:307.199877px;}
.y103{bottom:310.079876px;}
.y1f{bottom:312.419875px;}
.yf3{bottom:317.639873px;}
.yb3{bottom:320.519872px;}
.y6c{bottom:322.679871px;}
.y122{bottom:327.899869px;}
.y41{bottom:330.779868px;}
.y4f{bottom:333.119867px;}
.y102{bottom:335.999866px;}
.y123{bottom:336.179866px;}
.y8e{bottom:338.339865px;}
.y1e{bottom:343.379863px;}
.yb2{bottom:346.259861px;}
.yf2{bottom:348.779860px;}
.y6b{bottom:351.479859px;}
.ycf{bottom:353.099859px;}
.y141{bottom:353.819858px;}
.y40{bottom:356.699857px;}
.y121{bottom:359.039856px;}
.y101{bottom:361.919855px;}
.y4e{bottom:364.079854px;}
.y8d{bottom:369.299852px;}
.yb1{bottom:372.179851px;}
.y1d{bottom:374.159850px;}
.y69{bottom:377.399849px;}
.yf1{bottom:379.739848px;}
.y3f{bottom:382.619847px;}
.y6a{bottom:384.239846px;}
.y140{bottom:384.779846px;}
.y100{bottom:387.659845px;}
.y120{bottom:389.999844px;}
.y4d{bottom:395.219842px;}
.yb0{bottom:398.099841px;}
.y8c{bottom:400.439840px;}
.y68{bottom:403.319839px;}
.y1c{bottom:405.119838px;}
.y3e{bottom:408.359837px;}
.yf0{bottom:410.879836px;}
.yff{bottom:413.579835px;}
.y13f{bottom:415.919834px;}
.y11f{bottom:421.139832px;}
.yae{bottom:424.019830px;}
.y4c{bottom:426.179830px;}
.y67{bottom:429.059828px;}
.yaf{bottom:430.859828px;}
.y8b{bottom:431.399827px;}
.y3d{bottom:434.279826px;}
.y1b{bottom:436.619825px;}
.yfe{bottom:439.499824px;}
.yef{bottom:441.839823px;}
.y13e{bottom:446.879821px;}
.yad{bottom:449.759820px;}
.y11e{bottom:452.099819px;}
.y66{bottom:454.979818px;}
.y4b{bottom:457.319817px;}
.y3c{bottom:460.199816px;}
.y8a{bottom:462.539815px;}
.yfd{bottom:465.419814px;}
.y1a{bottom:467.579813px;}
.yee{bottom:472.979811px;}
.yac{bottom:475.679810px;}
.y13d{bottom:478.019809px;}
.y65{bottom:480.899808px;}
.y11d{bottom:483.239807px;}
.y3b{bottom:488.279805px;}
.yfc{bottom:491.159804px;}
.y89{bottom:493.499803px;}
.y19{bottom:498.719801px;}
.yce{bottom:501.599799px;}
.yab{bottom:503.939798px;}
.y64{bottom:506.819797px;}
.y13c{bottom:508.619797px;}
.y11c{bottom:514.199794px;}
.y3a{bottom:519.419792px;}
.y88{bottom:524.639790px;}
.y18{bottom:529.679788px;}
.y63{bottom:532.559787px;}
.yaa{bottom:534.899786px;}
.yed{bottom:535.079786px;}
.y13b{bottom:539.759784px;}
.y11b{bottom:545.339782px;}
.y4a{bottom:550.019780px;}
.y39{bottom:550.379780px;}
.y87{bottom:555.599778px;}
.y62{bottom:558.479777px;}
.y5a{bottom:558.659777px;}
.y17{bottom:560.459776px;}
.ycd{bottom:560.819776px;}
.ya9{bottom:566.039774px;}
.y13a{bottom:571.079772px;}
.y11a{bottom:576.299769px;}
.y38{bottom:581.519767px;}
.y61{bottom:584.399766px;}
.y86{bottom:586.379765px;}
.ye2{bottom:586.739765px;}
.y16{bottom:591.419763px;}
.ycc{bottom:591.779763px;}
.ya8{bottom:596.999761px;}
.yec{bottom:597.179761px;}
.y139{bottom:602.219759px;}
.y119{bottom:607.439757px;}
.y37{bottom:612.479755px;}
.y85{bottom:617.699753px;}
.y15{bottom:622.919751px;}
.ya7{bottom:628.139749px;}
.y138{bottom:633.179747px;}
.y118{bottom:638.399745px;}
.y36{bottom:643.619743px;}
.y83{bottom:646.499741px;}
.y84{bottom:653.339739px;}
.y14{bottom:653.879738px;}
.ya6{bottom:659.099736px;}
.yeb{bottom:659.279736px;}
.y137{bottom:664.319734px;}
.y117{bottom:669.539732px;}
.y82{bottom:672.419731px;}
.y35{bottom:674.579730px;}
.ycb{bottom:684.659726px;}
.y13{bottom:685.019726px;}
.ya5{bottom:690.239724px;}
.y136{bottom:695.279722px;}
.y81{bottom:698.159721px;}
.y116{bottom:700.499720px;}
.y34{bottom:705.719718px;}
.y12{bottom:715.979714px;}
.y144{bottom:716.159714px;}
.ya4{bottom:721.199712px;}
.yea{bottom:721.379711px;}
.y80{bottom:724.079710px;}
.y135{bottom:726.419709px;}
.y115{bottom:731.639707px;}
.y33{bottom:736.679705px;}
.y143{bottom:736.859705px;}
.y11{bottom:746.759701px;}
.yca{bottom:747.119701px;}
.y7f{bottom:749.999700px;}
.ya3{bottom:752.339699px;}
.y134{bottom:755.219698px;}
.y114{bottom:762.599695px;}
.y32{bottom:767.819693px;}
.y7e{bottom:775.919690px;}
.y10{bottom:777.719689px;}
.yc9{bottom:778.079689px;}
.y133{bottom:780.959688px;}
.ya2{bottom:783.299687px;}
.ye9{bottom:783.479687px;}
.y113{bottom:793.559683px;}
.y12f{bottom:798.419681px;}
.y31{bottom:798.779680px;}
.y7d{bottom:801.659679px;}
.ye1{bottom:803.999678px;}
.y132{bottom:806.879677px;}
.yf{bottom:809.219676px;}
.ya1{bottom:814.259674px;}
.ye8{bottom:814.439674px;}
.yc8{bottom:817.499673px;}
.y112{bottom:824.699670px;}
.y7c{bottom:827.579669px;}
.y30{bottom:829.919668px;}
.y131{bottom:832.799667px;}
.ye0{bottom:834.959666px;}
.yc7{bottom:837.839665px;}
.ye{bottom:840.179664px;}
.ya0{bottom:845.399662px;}
.ye7{bottom:845.579662px;}
.y7b{bottom:853.499659px;}
.y111{bottom:855.659658px;}
.y12d{bottom:858.539657px;}
.y2f{bottom:860.879656px;}
.yc5{bottom:863.759654px;}
.y12e{bottom:865.379654px;}
.yde{bottom:866.099654px;}
.yc6{bottom:870.599652px;}
.yd{bottom:871.319651px;}
.ydf{bottom:874.379650px;}
.y9f{bottom:876.359649px;}
.ye6{bottom:876.539649px;}
.y7a{bottom:879.239648px;}
.y12c{bottom:884.459646px;}
.y110{bottom:886.799645px;}
.yc4{bottom:889.679644px;}
.y2e{bottom:892.019643px;}
.ydd{bottom:897.059641px;}
.yc{bottom:901.919639px;}
.ye5{bottom:903.359639px;}
.y79{bottom:905.159638px;}
.y9e{bottom:907.499637px;}
.y12b{bottom:910.379636px;}
.yc3{bottom:915.599634px;}
.y10f{bottom:917.759633px;}
.y2d{bottom:922.979631px;}
.ydc{bottom:928.199629px;}
.yb{bottom:931.079628px;}
.y12a{bottom:936.299625px;}
.y9d{bottom:938.459625px;}
.yc2{bottom:941.339623px;}
.y10e{bottom:948.899620px;}
.y2c{bottom:954.119618px;}
.ya{bottom:956.999617px;}
.ydb{bottom:959.159616px;}
.y129{bottom:962.039615px;}
.yc1{bottom:967.259613px;}
.y9c{bottom:969.599612px;}
.y10d{bottom:979.859608px;}
.y9{bottom:982.739607px;}
.y2b{bottom:985.079606px;}
.y128{bottom:987.959605px;}
.yda{bottom:990.299604px;}
.yc0{bottom:995.519602px;}
.y9b{bottom:1000.559600px;}
.y8{bottom:1008.299597px;}
.y78{bottom:1008.659597px;}
.y10c{bottom:1010.999596px;}
.yfb{bottom:1013.879594px;}
.y2a{bottom:1016.219594px;}
.yd9{bottom:1021.259591px;}
.ybf{bottom:1026.479589px;}
.y9a{bottom:1031.699587px;}
.y7{bottom:1034.219586px;}
.y77{bottom:1034.579586px;}
.yfa{bottom:1039.799584px;}
.y29{bottom:1047.179581px;}
.yd8{bottom:1052.399579px;}
.ybe{bottom:1057.619577px;}
.y76{bottom:1060.499576px;}
.y99{bottom:1062.659575px;}
.y6{bottom:1064.819574px;}
.yf9{bottom:1065.539574px;}
.y10b{bottom:1072.379571px;}
.y28{bottom:1078.319569px;}
.yd7{bottom:1083.359567px;}
.y75{bottom:1086.239566px;}
.ybd{bottom:1088.579565px;}
.y97{bottom:1091.459563px;}
.y98{bottom:1098.299561px;}
.y5{bottom:1100.999560px;}
.y27{bottom:1109.279556px;}
.y74{bottom:1112.159555px;}
.yd6{bottom:1114.499554px;}
.y96{bottom:1117.379553px;}
.ybc{bottom:1124.219550px;}
.y4{bottom:1137.359545px;}
.y60{bottom:1140.059544px;}
.y26{bottom:1140.419544px;}
.y95{bottom:1143.299543px;}
.y49{bottom:1148.699541px;}
.h2{height:20.520000px;}
.h9{height:34.114908px;}
.h8{height:42.327757px;}
.h6{height:52.435877px;}
.ha{height:52.581776px;}
.h5{height:53.077830px;}
.h1{height:63.175756px;}
.hb{height:63.176956px;}
.h7{height:63.351537px;}
.h4{height:63.949193px;}
.h3{height:74.820556px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xf{left:132.479947px;}
.x21{left:137.339945px;}
.xc{left:154.620496px;}
.x3{left:175.139930px;}
.xb{left:180.719928px;}
.x14{left:188.639925px;}
.x27{left:193.139923px;}
.xd{left:230.399908px;}
.x22{left:233.459907px;}
.xe{left:236.519905px;}
.x4{left:284.579927px;}
.x1d{left:327.059869px;}
.x1e{left:333.179867px;}
.x15{left:345.779862px;}
.x16{left:350.639860px;}
.x12{left:367.199853px;}
.x13{left:372.059851px;}
.x1f{left:379.619848px;}
.x20{left:389.339844px;}
.x5{left:446.400044px;}
.x2{left:450.900000px;}
.x25{left:455.400000px;}
.x8{left:517.319716px;}
.x17{left:518.579793px;}
.x18{left:523.439791px;}
.x9{left:526.319718px;}
.x2c{left:547.559781px;}
.x2a{left:552.599779px;}
.x2d{left:557.279777px;}
.x6{left:563.219775px;}
.x2b{left:564.839774px;}
.x7{left:616.319753px;}
.x28{left:630.179748px;}
.x29{left:639.899744px;}
.x19{left:656.279737px;}
.x1a{left:661.139736px;}
.x10{left:666.899733px;}
.x11{left:673.019731px;}
.x1b{left:678.959728px;}
.x26{left:680.399728px;}
.x1c{left:683.819726px;}
.x23{left:700.199720px;}
.x24{left:712.439715px;}
.xa{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.149346pt;}
.ls6{letter-spacing:15.347247pt;}
.ls1{letter-spacing:30.236308pt;}
.ls4{letter-spacing:57.132244pt;}
.ls5{letter-spacing:57.772777pt;}
.ls0{letter-spacing:172.911398pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws3{word-spacing:-8.639997pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-2.066784pt;}
._1{margin-left:-1.117350pt;}
._2{width:0.968409pt;}
._18{width:1.859064pt;}
._5{width:2.748153pt;}
._c{width:4.165659pt;}
._6{width:5.439377pt;}
._7{width:6.406059pt;}
._e{width:7.528838pt;}
._16{width:8.502052pt;}
._4{width:9.920618pt;}
._3{width:10.924244pt;}
._8{width:11.984764pt;}
._9{width:13.458208pt;}
._15{width:14.672450pt;}
._22{width:15.691841pt;}
._f{width:16.915939pt;}
._10{width:17.808063pt;}
._a{width:19.619784pt;}
._b{width:20.899568pt;}
._d{width:21.829686pt;}
._20{width:22.856325pt;}
._1e{width:23.960096pt;}
._1c{width:25.184854pt;}
._1d{width:26.179970pt;}
._19{width:27.861965pt;}
._21{width:28.811101pt;}
._17{width:29.990908pt;}
._1a{width:32.085021pt;}
._1b{width:33.231243pt;}
._24{width:34.141150pt;}
._13{width:48.946649pt;}
._14{width:49.965489pt;}
._1f{width:51.356949pt;}
._12{width:172.911291pt;}
._23{width:1086.090232pt;}
._0{width:1102.100892pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.306913pt;}
.y59{bottom:97.866628pt;}
.y5f{bottom:97.866894pt;}
.y73{bottom:103.946892pt;}
.y25{bottom:112.106622pt;}
.y58{bottom:113.226621pt;}
.y5e{bottom:113.226888pt;}
.y72{bottom:113.866621pt;}
.y94{bottom:113.866888pt;}
.y10a{bottom:114.666621pt;}
.y48{bottom:116.746620pt;}
.ye4{bottom:119.306886pt;}
.yf8{bottom:119.466619pt;}
.y142{bottom:121.386618pt;}
.y57{bottom:128.586615pt;}
.y5d{bottom:128.586882pt;}
.ye3{bottom:129.226615pt;}
.y93{bottom:133.066613pt;}
.y5c{bottom:134.666613pt;}
.y109{bottom:137.706612pt;}
.y24{bottom:139.786611pt;}
.y56{bottom:143.946609pt;}
.y47{bottom:144.266609pt;}
.yf7{bottom:144.426609pt;}
.y5b{bottom:144.586609pt;}
.y71{bottom:148.906607pt;}
.y55{bottom:150.026607pt;}
.y92{bottom:156.106604pt;}
.y130{bottom:158.186603pt;}
.ybb{bottom:159.306603pt;}
.y54{bottom:159.946603pt;}
.y108{bottom:160.746602pt;}
.y127{bottom:165.386601pt;}
.y23{bottom:167.306600pt;}
.y46{bottom:171.946598pt;}
.yba{bottom:174.666597pt;}
.y70{bottom:176.586596pt;}
.y91{bottom:179.146595pt;}
.y107{bottom:183.626593pt;}
.y53{bottom:185.706592pt;}
.yb9{bottom:189.866591pt;}
.y22{bottom:194.986589pt;}
.yb8{bottom:195.946588pt;}
.y45{bottom:199.466587pt;}
.yf6{bottom:199.626587pt;}
.y90{bottom:202.026586pt;}
.y6f{bottom:204.106585pt;}
.yb7{bottom:205.226585pt;}
.y126{bottom:205.866584pt;}
.y106{bottom:206.666584pt;}
.yb6{bottom:211.306582pt;}
.y52{bottom:213.386581pt;}
.yd5{bottom:220.586578pt;}
.yb5{bottom:221.226578pt;}
.y21{bottom:222.506578pt;}
.y44{bottom:225.066577pt;}
.yd4{bottom:226.666576pt;}
.yf5{bottom:227.146576pt;}
.y105{bottom:229.706575pt;}
.y6e{bottom:231.626574pt;}
.yd3{bottom:235.946572pt;}
.y125{bottom:236.266572pt;}
.y51{bottom:240.906570pt;}
.y43{bottom:248.106567pt;}
.y20{bottom:250.026567pt;}
.yd2{bottom:251.306566pt;}
.y104{bottom:252.586566pt;}
.yf4{bottom:254.826565pt;}
.yd1{bottom:257.386564pt;}
.y6d{bottom:259.306563pt;}
.yb4{bottom:261.866562pt;}
.y124{bottom:263.946561pt;}
.yd0{bottom:267.306560pt;}
.y50{bottom:268.426559pt;}
.y42{bottom:270.986558pt;}
.y8f{bottom:273.066557pt;}
.y103{bottom:275.626556pt;}
.y1f{bottom:277.706556pt;}
.yf3{bottom:282.346554pt;}
.yb3{bottom:284.906553pt;}
.y6c{bottom:286.826552pt;}
.y122{bottom:291.466550pt;}
.y41{bottom:294.026549pt;}
.y4f{bottom:296.106548pt;}
.y102{bottom:298.666547pt;}
.y123{bottom:298.826547pt;}
.y8e{bottom:300.746546pt;}
.y1e{bottom:305.226545pt;}
.yb2{bottom:307.786544pt;}
.yf2{bottom:310.026543pt;}
.y6b{bottom:312.426542pt;}
.ycf{bottom:313.866541pt;}
.y141{bottom:314.506541pt;}
.y40{bottom:317.066540pt;}
.y121{bottom:319.146539pt;}
.y101{bottom:321.706538pt;}
.y4e{bottom:323.626537pt;}
.y8d{bottom:328.266535pt;}
.yb1{bottom:330.826534pt;}
.y1d{bottom:332.586534pt;}
.y69{bottom:335.466532pt;}
.yf1{bottom:337.546532pt;}
.y3f{bottom:340.106531pt;}
.y6a{bottom:341.546530pt;}
.y140{bottom:342.026530pt;}
.y100{bottom:344.586529pt;}
.y120{bottom:346.666528pt;}
.y4d{bottom:351.306526pt;}
.yb0{bottom:353.866525pt;}
.y8c{bottom:355.946524pt;}
.y68{bottom:358.506523pt;}
.y1c{bottom:360.106523pt;}
.y3e{bottom:362.986521pt;}
.yf0{bottom:365.226521pt;}
.yff{bottom:367.626520pt;}
.y13f{bottom:369.706519pt;}
.y11f{bottom:374.346517pt;}
.yae{bottom:376.906516pt;}
.y4c{bottom:378.826515pt;}
.y67{bottom:381.386514pt;}
.yaf{bottom:382.986513pt;}
.y8b{bottom:383.466513pt;}
.y3d{bottom:386.026512pt;}
.y1b{bottom:388.106511pt;}
.yfe{bottom:390.666510pt;}
.yef{bottom:392.746510pt;}
.y13e{bottom:397.226508pt;}
.yad{bottom:399.786507pt;}
.y11e{bottom:401.866506pt;}
.y66{bottom:404.426505pt;}
.y4b{bottom:406.506504pt;}
.y3c{bottom:409.066503pt;}
.y8a{bottom:411.146502pt;}
.yfd{bottom:413.706501pt;}
.y1a{bottom:415.626500pt;}
.yee{bottom:420.426498pt;}
.yac{bottom:422.826498pt;}
.y13d{bottom:424.906497pt;}
.y65{bottom:427.466496pt;}
.y11d{bottom:429.546495pt;}
.y3b{bottom:434.026493pt;}
.yfc{bottom:436.586492pt;}
.y89{bottom:438.666491pt;}
.y19{bottom:443.306489pt;}
.yce{bottom:445.866488pt;}
.yab{bottom:447.946487pt;}
.y64{bottom:450.506486pt;}
.y13c{bottom:452.106486pt;}
.y11c{bottom:457.066484pt;}
.y3a{bottom:461.706482pt;}
.y88{bottom:466.346480pt;}
.y18{bottom:470.826478pt;}
.y63{bottom:473.386477pt;}
.yaa{bottom:475.466476pt;}
.yed{bottom:475.626476pt;}
.y13b{bottom:479.786475pt;}
.y11b{bottom:484.746473pt;}
.y4a{bottom:488.906471pt;}
.y39{bottom:489.226471pt;}
.y87{bottom:493.866469pt;}
.y62{bottom:496.426468pt;}
.y5a{bottom:496.586468pt;}
.y17{bottom:498.186467pt;}
.ycd{bottom:498.506467pt;}
.ya9{bottom:503.146465pt;}
.y13a{bottom:507.626464pt;}
.y11a{bottom:512.266462pt;}
.y38{bottom:516.906460pt;}
.y61{bottom:519.466459pt;}
.y86{bottom:521.226458pt;}
.ye2{bottom:521.546458pt;}
.y16{bottom:525.706456pt;}
.ycc{bottom:526.026456pt;}
.ya8{bottom:530.666454pt;}
.yec{bottom:530.826454pt;}
.y139{bottom:535.306453pt;}
.y119{bottom:539.946451pt;}
.y37{bottom:544.426449pt;}
.y85{bottom:549.066447pt;}
.y15{bottom:553.706445pt;}
.ya7{bottom:558.346443pt;}
.y138{bottom:562.826442pt;}
.y118{bottom:567.466440pt;}
.y36{bottom:572.106438pt;}
.y83{bottom:574.666437pt;}
.y84{bottom:580.746434pt;}
.y14{bottom:581.226434pt;}
.ya6{bottom:585.866432pt;}
.yeb{bottom:586.026432pt;}
.y137{bottom:590.506430pt;}
.y117{bottom:595.146429pt;}
.y82{bottom:597.706428pt;}
.y35{bottom:599.626427pt;}
.ycb{bottom:608.586423pt;}
.y13{bottom:608.906423pt;}
.ya5{bottom:613.546421pt;}
.y136{bottom:618.026419pt;}
.y81{bottom:620.586418pt;}
.y116{bottom:622.666418pt;}
.y34{bottom:627.306416pt;}
.y12{bottom:636.426412pt;}
.y144{bottom:636.586412pt;}
.ya4{bottom:641.066410pt;}
.yea{bottom:641.226410pt;}
.y80{bottom:643.626409pt;}
.y135{bottom:645.706408pt;}
.y115{bottom:650.346407pt;}
.y33{bottom:654.826405pt;}
.y143{bottom:654.986405pt;}
.y11{bottom:663.786401pt;}
.yca{bottom:664.106401pt;}
.y7f{bottom:666.666400pt;}
.ya3{bottom:668.746399pt;}
.y134{bottom:671.306398pt;}
.y114{bottom:677.866396pt;}
.y32{bottom:682.506394pt;}
.y7e{bottom:689.706391pt;}
.y10{bottom:691.306390pt;}
.yc9{bottom:691.626390pt;}
.y133{bottom:694.186389pt;}
.ya2{bottom:696.266388pt;}
.ye9{bottom:696.426388pt;}
.y113{bottom:705.386385pt;}
.y12f{bottom:709.706383pt;}
.y31{bottom:710.026383pt;}
.y7d{bottom:712.586382pt;}
.ye1{bottom:714.666381pt;}
.y132{bottom:717.226380pt;}
.yf{bottom:719.306379pt;}
.ya1{bottom:723.786377pt;}
.ye8{bottom:723.946377pt;}
.yc8{bottom:726.666376pt;}
.y112{bottom:733.066373pt;}
.y7c{bottom:735.626372pt;}
.y30{bottom:737.706372pt;}
.y131{bottom:740.266371pt;}
.ye0{bottom:742.186370pt;}
.yc7{bottom:744.746369pt;}
.ye{bottom:746.826368pt;}
.ya0{bottom:751.466366pt;}
.ye7{bottom:751.626366pt;}
.y7b{bottom:758.666363pt;}
.y111{bottom:760.586362pt;}
.y12d{bottom:763.146361pt;}
.y2f{bottom:765.226361pt;}
.yc5{bottom:767.786360pt;}
.y12e{bottom:769.226359pt;}
.yde{bottom:769.866359pt;}
.yc6{bottom:773.866357pt;}
.yd{bottom:774.506357pt;}
.ydf{bottom:777.226356pt;}
.y9f{bottom:778.986355pt;}
.ye6{bottom:779.146355pt;}
.y7a{bottom:781.546354pt;}
.y12c{bottom:786.186352pt;}
.y110{bottom:788.266351pt;}
.yc4{bottom:790.826350pt;}
.y2e{bottom:792.906350pt;}
.ydd{bottom:797.386348pt;}
.yc{bottom:801.706346pt;}
.ye5{bottom:802.986345pt;}
.y79{bottom:804.586345pt;}
.y9e{bottom:806.666344pt;}
.y12b{bottom:809.226343pt;}
.yc3{bottom:813.866341pt;}
.y10f{bottom:815.786340pt;}
.y2d{bottom:820.426338pt;}
.ydc{bottom:825.066337pt;}
.yb{bottom:827.626336pt;}
.y12a{bottom:832.266334pt;}
.y9d{bottom:834.186333pt;}
.yc2{bottom:836.746332pt;}
.y10e{bottom:843.466329pt;}
.y2c{bottom:848.106327pt;}
.ya{bottom:850.666326pt;}
.ydb{bottom:852.586326pt;}
.y129{bottom:855.146325pt;}
.yc1{bottom:859.786323pt;}
.y9c{bottom:861.866322pt;}
.y10d{bottom:870.986318pt;}
.y9{bottom:873.546317pt;}
.y2b{bottom:875.626316pt;}
.y128{bottom:878.186315pt;}
.yda{bottom:880.266315pt;}
.yc0{bottom:884.906313pt;}
.y9b{bottom:889.386311pt;}
.y8{bottom:896.266308pt;}
.y78{bottom:896.586308pt;}
.y10c{bottom:898.666307pt;}
.yfb{bottom:901.226306pt;}
.y2a{bottom:903.306305pt;}
.yd9{bottom:907.786304pt;}
.ybf{bottom:912.426302pt;}
.y9a{bottom:917.066300pt;}
.y7{bottom:919.306299pt;}
.y77{bottom:919.626299pt;}
.yfa{bottom:924.266297pt;}
.y29{bottom:930.826294pt;}
.yd8{bottom:935.466292pt;}
.ybe{bottom:940.106291pt;}
.y76{bottom:942.666290pt;}
.y99{bottom:944.586289pt;}
.y6{bottom:946.506288pt;}
.yf9{bottom:947.146288pt;}
.y10b{bottom:953.226285pt;}
.y28{bottom:958.506283pt;}
.yd7{bottom:962.986281pt;}
.y75{bottom:965.546280pt;}
.ybd{bottom:967.626280pt;}
.y97{bottom:970.186279pt;}
.y98{bottom:976.266276pt;}
.y5{bottom:978.666275pt;}
.y27{bottom:986.026272pt;}
.y74{bottom:988.586271pt;}
.yd6{bottom:990.666270pt;}
.y96{bottom:993.226269pt;}
.ybc{bottom:999.306267pt;}
.y4{bottom:1010.986262pt;}
.y60{bottom:1013.386261pt;}
.y26{bottom:1013.706261pt;}
.y95{bottom:1016.266260pt;}
.y49{bottom:1021.066258pt;}
.h2{height:18.240000pt;}
.h9{height:30.324363pt;}
.h8{height:37.624672pt;}
.h6{height:46.609669pt;}
.ha{height:46.739356pt;}
.h5{height:47.180294pt;}
.h1{height:56.156228pt;}
.hb{height:56.157294pt;}
.h7{height:56.312477pt;}
.h4{height:56.843727pt;}
.h3{height:66.507161pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xf{left:117.759953pt;}
.x21{left:122.079951pt;}
.xc{left:137.440441pt;}
.x3{left:155.679938pt;}
.xb{left:160.639936pt;}
.x14{left:167.679933pt;}
.x27{left:171.679931pt;}
.xd{left:204.799918pt;}
.x22{left:207.519917pt;}
.xe{left:210.239916pt;}
.x4{left:252.959935pt;}
.x1d{left:290.719884pt;}
.x1e{left:296.159882pt;}
.x15{left:307.359877pt;}
.x16{left:311.679875pt;}
.x12{left:326.399869pt;}
.x13{left:330.719868pt;}
.x1f{left:337.439865pt;}
.x20{left:346.079862pt;}
.x5{left:396.800039pt;}
.x2{left:400.800000pt;}
.x25{left:404.800000pt;}
.x8{left:459.839748pt;}
.x17{left:460.959816pt;}
.x18{left:465.279814pt;}
.x9{left:467.839750pt;}
.x2c{left:486.719805pt;}
.x2a{left:491.199804pt;}
.x2d{left:495.359802pt;}
.x6{left:500.639800pt;}
.x2b{left:502.079799pt;}
.x7{left:547.839781pt;}
.x28{left:560.159776pt;}
.x29{left:568.799772pt;}
.x19{left:583.359767pt;}
.x1a{left:587.679765pt;}
.x10{left:592.799763pt;}
.x11{left:598.239761pt;}
.x1b{left:603.519759pt;}
.x26{left:604.799758pt;}
.x1c{left:607.839757pt;}
.x23{left:622.399751pt;}
.x24{left:633.279747pt;}
.xa{left:680.319728pt;}
}

