
    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_f236af60700dd2a1d9ad5ff4.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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_878c2dc2bd8ceb9ce4bc9488.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f5064c1945a1c4b12073406.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_324338e061c7d41105efaa5c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6d36276ab50407d041be2a6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_b219342fdf7d8432ed689fc4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1d4f55df32f00dc895988b5b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.102539;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:ff9;src:url('chunks/assets/font_f02f7f32359ad9edc57126d3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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.236424,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);}
.m0{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);}
.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);}
.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);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.ls5{letter-spacing:0.010620px;}
.lse{letter-spacing:0.021238px;}
.ls0{letter-spacing:0.021282px;}
.lsa{letter-spacing:0.029003px;}
.lsc{letter-spacing:0.030525px;}
.ls8{letter-spacing:0.036300px;}
.lsb{letter-spacing:0.038724px;}
.lsd{letter-spacing:0.039610px;}
.ls7{letter-spacing:23.893897px;}
.ls6{letter-spacing:23.929919px;}
.ls9{letter-spacing:24.614322px;}
.ls3{letter-spacing:54.872162px;}
.ls4{letter-spacing:54.908183px;}
.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;}
}
.ws4{word-spacing:-35.999986px;}
.ws0{word-spacing:-18.021275px;}
.ws5{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws2{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-2.219308px;}
._1{margin-left:-1.126221px;}
._0{width:1.122354px;}
._c{width:2.167914px;}
._a{width:3.527115px;}
._6{width:4.686454px;}
._7{width:6.243006px;}
._8{width:7.698240px;}
._9{width:8.698724px;}
._b{width:9.819302px;}
._10{width:11.427066px;}
._3{width:12.785859px;}
._d{width:14.350068px;}
._e{width:16.266279px;}
._13{width:19.366549px;}
._f{width:20.833881px;}
._12{width:22.821201px;}
._4{width:23.918095px;}
._5{width:25.376654px;}
._14{width:26.633256px;}
._15{width:28.100541px;}
._16{width:29.339625px;}
._1c{width:30.967512px;}
._20{width:32.277836px;}
._1e{width:33.780270px;}
._1f{width:34.926052px;}
._1a{width:40.472646px;}
._1b{width:41.917498px;}
._1d{width:43.041554px;}
._17{width:59.117360px;}
._2{width:68.929831px;}
._18{width:86.060664px;}
._11{width:194.525202px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs4{font-size:76.089538px;}
.fs6{font-size:84.239966px;}
.fs5{font-size:95.759962px;}
.fs7{font-size:131.759947px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.320031px;}
.y5{bottom:4.320038px;}
.y4{bottom:49.980240px;}
.y3{bottom:54.300278px;}
.y2{bottom:57.000277px;}
.y3b{bottom:68.880240px;}
.y3a{bottom:73.200271px;}
.y39{bottom:74.820270px;}
.yd2{bottom:120.359952px;}
.yc4{bottom:120.539952px;}
.y8d{bottom:120.899952px;}
.y8f{bottom:120.900252px;}
.y8e{bottom:129.180248px;}
.ya7{bottom:131.159948px;}
.yc3{bottom:141.239944px;}
.y38{bottom:141.419943px;}
.y8c{bottom:141.599943px;}
.ya6{bottom:151.499939px;}
.y70{bottom:157.079937px;}
.yd1{bottom:158.339937px;}
.yc2{bottom:161.939935px;}
.y37{bottom:162.119935px;}
.y8b{bottom:162.299935px;}
.ya5{bottom:172.199931px;}
.y6f{bottom:177.779929px;}
.yc1{bottom:182.639927px;}
.y36{bottom:182.819927px;}
.y8a{bottom:182.999927px;}
.ya4{bottom:192.899923px;}
.yd0{bottom:196.319921px;}
.y6e{bottom:198.479921px;}
.yc0{bottom:203.339919px;}
.y35{bottom:203.519919px;}
.y89{bottom:203.699919px;}
.ya3{bottom:213.599915px;}
.y6d{bottom:219.179912px;}
.ybf{bottom:224.039910px;}
.y34{bottom:224.219910px;}
.y88{bottom:224.399910px;}
.ya2{bottom:234.299906px;}
.y6c{bottom:239.879904px;}
.ybe{bottom:244.739902px;}
.y33{bottom:244.919902px;}
.y87{bottom:245.099902px;}
.ya1{bottom:255.359898px;}
.y6b{bottom:260.579896px;}
.yae{bottom:265.439894px;}
.y32{bottom:265.619894px;}
.y86{bottom:265.799894px;}
.ycf{bottom:272.279891px;}
.ya0{bottom:276.059890px;}
.y6a{bottom:281.279887px;}
.ybd{bottom:286.139886px;}
.y31{bottom:286.319885px;}
.y85{bottom:286.499885px;}
.y9f{bottom:296.759881px;}
.y69{bottom:301.979879px;}
.ybc{bottom:306.839877px;}
.y30{bottom:307.019877px;}
.y84{bottom:307.199877px;}
.yce{bottom:310.079876px;}
.y9e{bottom:317.459873px;}
.y68{bottom:322.679871px;}
.ybb{bottom:327.539869px;}
.y2f{bottom:327.719869px;}
.y83{bottom:327.899869px;}
.y9d{bottom:338.159865px;}
.y67{bottom:343.379863px;}
.ycd{bottom:348.059861px;}
.yba{bottom:348.239861px;}
.y2e{bottom:348.419861px;}
.y81{bottom:348.599861px;}
.y82{bottom:356.879857px;}
.y9c{bottom:362.279855px;}
.y66{bottom:364.079854px;}
.yaf{bottom:368.939852px;}
.y2d{bottom:369.119852px;}
.y80{bottom:369.299852px;}
.y9b{bottom:382.979847px;}
.y65{bottom:384.779846px;}
.ycc{bottom:386.039846px;}
.yb9{bottom:389.639844px;}
.y2c{bottom:389.819844px;}
.y7f{bottom:389.999844px;}
.y9a{bottom:403.679839px;}
.y64{bottom:405.479838px;}
.y2b{bottom:410.159836px;}
.yb8{bottom:410.339836px;}
.y7e{bottom:410.699836px;}
.ycb{bottom:424.019830px;}
.y99{bottom:424.379830px;}
.y63{bottom:426.179830px;}
.y2a{bottom:430.859828px;}
.yb7{bottom:431.039828px;}
.y7d{bottom:431.399827px;}
.y98{bottom:445.079822px;}
.y62{bottom:446.519821px;}
.y29{bottom:451.559819px;}
.yb6{bottom:451.739819px;}
.y7c{bottom:452.099819px;}
.yca{bottom:461.999815px;}
.y97{bottom:465.779814px;}
.y61{bottom:467.579813px;}
.y28{bottom:472.259811px;}
.yb5{bottom:472.439811px;}
.y7b{bottom:472.799811px;}
.y96{bottom:486.479805px;}
.y60{bottom:488.279805px;}
.y27{bottom:492.959803px;}
.y7a{bottom:493.319803px;}
.yc9{bottom:499.799800px;}
.y95{bottom:508.439797px;}
.y5f{bottom:508.979796px;}
.yac{bottom:513.659795px;}
.y26{bottom:514.019794px;}
.y5e{bottom:529.679788px;}
.yab{bottom:534.359786px;}
.y25{bottom:534.719786px;}
.yc8{bottom:537.779785px;}
.y5c{bottom:550.199780px;}
.y92{bottom:555.059778px;}
.y24{bottom:555.419778px;}
.y5d{bottom:558.479777px;}
.y5b{bottom:572.339771px;}
.y91{bottom:575.759770px;}
.y23{bottom:576.119770px;}
.y5a{bottom:593.039763px;}
.yb4{bottom:596.459761px;}
.y22{bottom:596.819761px;}
.y59{bottom:613.739755px;}
.y79{bottom:617.159753px;}
.y21{bottom:617.519753px;}
.y58{bottom:634.439746px;}
.yb3{bottom:637.859745px;}
.y20{bottom:638.219745px;}
.yc7{bottom:651.719739px;}
.y57{bottom:655.139738px;}
.yb2{bottom:658.559737px;}
.y1f{bottom:658.919736px;}
.y56{bottom:675.839730px;}
.yb1{bottom:679.259728px;}
.y1e{bottom:679.619728px;}
.yc6{bottom:689.699724px;}
.y55{bottom:696.359721px;}
.yb0{bottom:699.959720px;}
.y1d{bottom:700.319720px;}
.y54{bottom:718.499713px;}
.y1c{bottom:720.659712px;}
.y78{bottom:721.019712px;}
.yc5{bottom:727.499709px;}
.y53{bottom:739.199704px;}
.y1b{bottom:741.719703px;}
.y52{bottom:759.899696px;}
.yad{bottom:762.059695px;}
.y1a{bottom:762.419695px;}
.y51{bottom:780.599688px;}
.yaa{bottom:782.759687px;}
.y19{bottom:783.119687px;}
.y50{bottom:801.299679px;}
.y18{bottom:803.819678px;}
.y4f{bottom:821.999671px;}
.y17{bottom:824.519670px;}
.y4e{bottom:842.699663px;}
.ya9{bottom:844.859662px;}
.y16{bottom:845.219662px;}
.y4d{bottom:863.399655px;}
.y15{bottom:865.919654px;}
.y4c{bottom:884.099646px;}
.y14{bottom:886.619645px;}
.y4b{bottom:904.799638px;}
.y94{bottom:906.959637px;}
.y13{bottom:907.319637px;}
.y4a{bottom:925.499630px;}
.y93{bottom:927.659629px;}
.y12{bottom:928.019629px;}
.y49{bottom:946.019622px;}
.y11{bottom:948.719621px;}
.y48{bottom:968.159613px;}
.y10{bottom:969.419612px;}
.y47{bottom:988.859604px;}
.yf{bottom:989.759604px;}
.y77{bottom:990.119604px;}
.y46{bottom:1009.559596px;}
.ye{bottom:1010.459596px;}
.y76{bottom:1010.819596px;}
.y45{bottom:1030.259588px;}
.yd{bottom:1031.159588px;}
.y75{bottom:1031.519587px;}
.y44{bottom:1050.959580px;}
.yc{bottom:1051.859579px;}
.y74{bottom:1052.219579px;}
.y43{bottom:1071.659571px;}
.yb{bottom:1072.559571px;}
.y73{bottom:1072.919571px;}
.y42{bottom:1092.359563px;}
.ya{bottom:1093.259563px;}
.y71{bottom:1093.619563px;}
.y72{bottom:1101.899559px;}
.y41{bottom:1112.879555px;}
.y9{bottom:1113.959554px;}
.y90{bottom:1114.319554px;}
.y8{bottom:1134.659546px;}
.y40{bottom:1135.019546px;}
.y7{bottom:1155.359538px;}
.y3e{bottom:1155.719538px;}
.y3f{bottom:1163.999534px;}
.y6{bottom:1176.059530px;}
.y3d{bottom:1176.419529px;}
.ya8{bottom:1184.699526px;}
.y1{bottom:1196.399521px;}
.h4{height:20.520000px;}
.h7{height:35.991197px;}
.h8{height:42.327757px;}
.hb{height:42.445530px;}
.hd{height:42.775295px;}
.h3{height:52.435877px;}
.h1{height:62.327788px;}
.h2{height:63.175756px;}
.h6{height:63.351537px;}
.hc{height:63.843724px;}
.h5{height:63.949193px;}
.h9{height:70.479421px;}
.hf{height:74.697158px;}
.h10{height:74.820556px;}
.ha{height:75.093720px;}
.he{height:84.023755px;}
.h11{height:115.611633px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:127.619949px;}
.xb{left:154.619938px;}
.xc{left:162.899935px;}
.x8{left:180.719930px;}
.x17{left:264.059894px;}
.x19{left:283.139887px;}
.x2{left:325.619870px;}
.x1a{left:397.439841px;}
.xd{left:403.739839px;}
.xe{left:415.979834px;}
.x5{left:432.899594px;}
.x18{left:451.079820px;}
.x6{left:459.900000px;}
.x3{left:523.979790px;}
.x15{left:540.359784px;}
.x16{left:549.719780px;}
.x11{left:569.159772px;}
.x12{left:578.519769px;}
.x1{left:604.259758px;}
.x9{left:617.939753px;}
.xa{left:627.299749px;}
.x13{left:671.939731px;}
.x14{left:678.059729px;}
.xf{left:723.599711px;}
.x10{left:739.799704px;}
.x4{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009440pt;}
.lse{letter-spacing:0.018878pt;}
.ls0{letter-spacing:0.018917pt;}
.lsa{letter-spacing:0.025780pt;}
.lsc{letter-spacing:0.027134pt;}
.ls8{letter-spacing:0.032267pt;}
.lsb{letter-spacing:0.034422pt;}
.lsd{letter-spacing:0.035209pt;}
.ls7{letter-spacing:21.239020pt;}
.ls6{letter-spacing:21.271039pt;}
.ls9{letter-spacing:21.879397pt;}
.ls3{letter-spacing:48.775255pt;}
.ls4{letter-spacing:48.807274pt;}
.ls1{letter-spacing:172.911398pt;}
.ws4{word-spacing:-31.999987pt;}
.ws0{word-spacing:-16.018911pt;}
.ws5{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws2{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-1.972718pt;}
._1{margin-left:-1.001086pt;}
._0{width:0.997648pt;}
._c{width:1.927035pt;}
._a{width:3.135213pt;}
._6{width:4.165737pt;}
._7{width:5.549339pt;}
._8{width:6.842880pt;}
._9{width:7.732199pt;}
._b{width:8.728268pt;}
._10{width:10.157392pt;}
._3{width:11.365208pt;}
._d{width:12.755616pt;}
._e{width:14.458914pt;}
._13{width:17.214710pt;}
._f{width:18.519005pt;}
._12{width:20.285512pt;}
._4{width:21.260529pt;}
._5{width:22.557025pt;}
._14{width:23.674005pt;}
._15{width:24.978259pt;}
._16{width:26.079666pt;}
._1c{width:27.526677pt;}
._20{width:28.691410pt;}
._1e{width:30.026906pt;}
._1f{width:31.045380pt;}
._1a{width:35.975686pt;}
._1b{width:37.259998pt;}
._1d{width:38.259159pt;}
._17{width:52.548764pt;}
._2{width:61.270961pt;}
._18{width:76.498368pt;}
._11{width:172.911291pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs4{font-size:67.635145pt;}
.fs6{font-size:74.879970pt;}
.fs5{font-size:85.119966pt;}
.fs7{font-size:117.119953pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:3.840027pt;}
.y5{bottom:3.840034pt;}
.y4{bottom:44.426880pt;}
.y3{bottom:48.266914pt;}
.y2{bottom:50.666913pt;}
.y3b{bottom:61.226880pt;}
.y3a{bottom:65.066907pt;}
.y39{bottom:66.506907pt;}
.yd2{bottom:106.986624pt;}
.yc4{bottom:107.146624pt;}
.y8d{bottom:107.466624pt;}
.y8f{bottom:107.466890pt;}
.y8e{bottom:114.826887pt;}
.ya7{bottom:116.586620pt;}
.yc3{bottom:125.546616pt;}
.y38{bottom:125.706616pt;}
.y8c{bottom:125.866616pt;}
.ya6{bottom:134.666613pt;}
.y70{bottom:139.626611pt;}
.yd1{bottom:140.746610pt;}
.yc2{bottom:143.946609pt;}
.y37{bottom:144.106609pt;}
.y8b{bottom:144.266609pt;}
.ya5{bottom:153.066605pt;}
.y6f{bottom:158.026603pt;}
.yc1{bottom:162.346602pt;}
.y36{bottom:162.506602pt;}
.y8a{bottom:162.666602pt;}
.ya4{bottom:171.466598pt;}
.yd0{bottom:174.506597pt;}
.y6e{bottom:176.426596pt;}
.yc0{bottom:180.746594pt;}
.y35{bottom:180.906594pt;}
.y89{bottom:181.066594pt;}
.ya3{bottom:189.866591pt;}
.y6d{bottom:194.826589pt;}
.ybf{bottom:199.146587pt;}
.y34{bottom:199.306587pt;}
.y88{bottom:199.466587pt;}
.ya2{bottom:208.266583pt;}
.y6c{bottom:213.226581pt;}
.ybe{bottom:217.546580pt;}
.y33{bottom:217.706580pt;}
.y87{bottom:217.866580pt;}
.ya1{bottom:226.986576pt;}
.y6b{bottom:231.626574pt;}
.yae{bottom:235.946572pt;}
.y32{bottom:236.106572pt;}
.y86{bottom:236.266572pt;}
.ycf{bottom:242.026570pt;}
.ya0{bottom:245.386569pt;}
.y6a{bottom:250.026567pt;}
.ybd{bottom:254.346565pt;}
.y31{bottom:254.506565pt;}
.y85{bottom:254.666565pt;}
.y9f{bottom:263.786561pt;}
.y69{bottom:268.426559pt;}
.ybc{bottom:272.746558pt;}
.y30{bottom:272.906558pt;}
.y84{bottom:273.066557pt;}
.yce{bottom:275.626556pt;}
.y9e{bottom:282.186554pt;}
.y68{bottom:286.826552pt;}
.ybb{bottom:291.146550pt;}
.y2f{bottom:291.306550pt;}
.y83{bottom:291.466550pt;}
.y9d{bottom:300.586546pt;}
.y67{bottom:305.226545pt;}
.ycd{bottom:309.386543pt;}
.yba{bottom:309.546543pt;}
.y2e{bottom:309.706543pt;}
.y81{bottom:309.866543pt;}
.y82{bottom:317.226540pt;}
.y9c{bottom:322.026538pt;}
.y66{bottom:323.626537pt;}
.yaf{bottom:327.946535pt;}
.y2d{bottom:328.106535pt;}
.y80{bottom:328.266535pt;}
.y9b{bottom:340.426530pt;}
.y65{bottom:342.026530pt;}
.ycc{bottom:343.146529pt;}
.yb9{bottom:346.346528pt;}
.y2c{bottom:346.506528pt;}
.y7f{bottom:346.666528pt;}
.y9a{bottom:358.826523pt;}
.y64{bottom:360.426522pt;}
.y2b{bottom:364.586521pt;}
.yb8{bottom:364.746521pt;}
.y7e{bottom:365.066521pt;}
.ycb{bottom:376.906516pt;}
.y99{bottom:377.226516pt;}
.y63{bottom:378.826515pt;}
.y2a{bottom:382.986513pt;}
.yb7{bottom:383.146513pt;}
.y7d{bottom:383.466513pt;}
.y98{bottom:395.626508pt;}
.y62{bottom:396.906508pt;}
.y29{bottom:401.386506pt;}
.yb6{bottom:401.546506pt;}
.y7c{bottom:401.866506pt;}
.yca{bottom:410.666502pt;}
.y97{bottom:414.026501pt;}
.y61{bottom:415.626500pt;}
.y28{bottom:419.786499pt;}
.yb5{bottom:419.946499pt;}
.y7b{bottom:420.266499pt;}
.y96{bottom:432.426494pt;}
.y60{bottom:434.026493pt;}
.y27{bottom:438.186491pt;}
.y7a{bottom:438.506491pt;}
.yc9{bottom:444.266489pt;}
.y95{bottom:451.946486pt;}
.y5f{bottom:452.426486pt;}
.yac{bottom:456.586484pt;}
.y26{bottom:456.906484pt;}
.y5e{bottom:470.826478pt;}
.yab{bottom:474.986477pt;}
.y25{bottom:475.306477pt;}
.yc8{bottom:478.026475pt;}
.y5c{bottom:489.066471pt;}
.y92{bottom:493.386469pt;}
.y24{bottom:493.706469pt;}
.y5d{bottom:496.426468pt;}
.y5b{bottom:508.746463pt;}
.y91{bottom:511.786462pt;}
.y23{bottom:512.106462pt;}
.y5a{bottom:527.146456pt;}
.yb4{bottom:530.186455pt;}
.y22{bottom:530.506454pt;}
.y59{bottom:545.546448pt;}
.y79{bottom:548.586447pt;}
.y21{bottom:548.906447pt;}
.y58{bottom:563.946441pt;}
.yb3{bottom:566.986440pt;}
.y20{bottom:567.306440pt;}
.yc7{bottom:579.306435pt;}
.y57{bottom:582.346434pt;}
.yb2{bottom:585.386433pt;}
.y1f{bottom:585.706432pt;}
.y56{bottom:600.746426pt;}
.yb1{bottom:603.786425pt;}
.y1e{bottom:604.106425pt;}
.yc6{bottom:613.066421pt;}
.y55{bottom:618.986419pt;}
.yb0{bottom:622.186418pt;}
.y1d{bottom:622.506418pt;}
.y54{bottom:638.666411pt;}
.y1c{bottom:640.586410pt;}
.y78{bottom:640.906410pt;}
.yc5{bottom:646.666408pt;}
.y53{bottom:657.066404pt;}
.y1b{bottom:659.306403pt;}
.y52{bottom:675.466396pt;}
.yad{bottom:677.386396pt;}
.y1a{bottom:677.706396pt;}
.y51{bottom:693.866389pt;}
.yaa{bottom:695.786388pt;}
.y19{bottom:696.106388pt;}
.y50{bottom:712.266382pt;}
.y18{bottom:714.506381pt;}
.y4f{bottom:730.666374pt;}
.y17{bottom:732.906374pt;}
.y4e{bottom:749.066367pt;}
.ya9{bottom:750.986366pt;}
.y16{bottom:751.306366pt;}
.y4d{bottom:767.466360pt;}
.y15{bottom:769.706359pt;}
.y4c{bottom:785.866352pt;}
.y14{bottom:788.106351pt;}
.y4b{bottom:804.266345pt;}
.y94{bottom:806.186344pt;}
.y13{bottom:806.506344pt;}
.y4a{bottom:822.666338pt;}
.y93{bottom:824.586337pt;}
.y12{bottom:824.906337pt;}
.y49{bottom:840.906330pt;}
.y11{bottom:843.306329pt;}
.y48{bottom:860.586322pt;}
.y10{bottom:861.706322pt;}
.y47{bottom:878.986315pt;}
.yf{bottom:879.786315pt;}
.y77{bottom:880.106315pt;}
.y46{bottom:897.386308pt;}
.ye{bottom:898.186307pt;}
.y76{bottom:898.506307pt;}
.y45{bottom:915.786300pt;}
.yd{bottom:916.586300pt;}
.y75{bottom:916.906300pt;}
.y44{bottom:934.186293pt;}
.yc{bottom:934.986293pt;}
.y74{bottom:935.306293pt;}
.y43{bottom:952.586286pt;}
.yb{bottom:953.386285pt;}
.y73{bottom:953.706285pt;}
.y42{bottom:970.986278pt;}
.ya{bottom:971.786278pt;}
.y71{bottom:972.106278pt;}
.y72{bottom:979.466275pt;}
.y41{bottom:989.226271pt;}
.y9{bottom:990.186271pt;}
.y90{bottom:990.506270pt;}
.y8{bottom:1008.586263pt;}
.y40{bottom:1008.906263pt;}
.y7{bottom:1026.986256pt;}
.y3e{bottom:1027.306256pt;}
.y3f{bottom:1034.666253pt;}
.y6{bottom:1045.386249pt;}
.y3d{bottom:1045.706248pt;}
.ya8{bottom:1053.066245pt;}
.y1{bottom:1063.466241pt;}
.h4{height:18.240000pt;}
.h7{height:31.992175pt;}
.h8{height:37.624672pt;}
.hb{height:37.729360pt;}
.hd{height:38.022485pt;}
.h3{height:46.609669pt;}
.h1{height:55.402478pt;}
.h2{height:56.156228pt;}
.h6{height:56.312477pt;}
.hc{height:56.749977pt;}
.h5{height:56.843727pt;}
.h9{height:62.648374pt;}
.hf{height:66.397473pt;}
.h10{height:66.507161pt;}
.ha{height:66.749973pt;}
.he{height:74.687783pt;}
.h11{height:102.765896pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:113.439955pt;}
.xb{left:137.439945pt;}
.xc{left:144.799942pt;}
.x8{left:160.639938pt;}
.x17{left:234.719906pt;}
.x19{left:251.679899pt;}
.x2{left:289.439884pt;}
.x1a{left:353.279859pt;}
.xd{left:358.879856pt;}
.xe{left:369.759852pt;}
.x5{left:384.799639pt;}
.x18{left:400.959840pt;}
.x6{left:408.800000pt;}
.x3{left:465.759814pt;}
.x15{left:480.319808pt;}
.x16{left:488.639805pt;}
.x11{left:505.919798pt;}
.x12{left:514.239794pt;}
.x1{left:537.119785pt;}
.x9{left:549.279780pt;}
.xa{left:557.599777pt;}
.x13{left:597.279761pt;}
.x14{left:602.719759pt;}
.xf{left:643.199743pt;}
.x10{left:657.599737pt;}
.x4{left:680.319728pt;}
}

