
    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_24700a70fdd678a60407b34e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_fd164d73289ac320ac82c7d4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_e16ef53d816015bf53c71153.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_9f981a11ccd887e9bbb99834.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_c59ce6845586e231967beb82.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_0abef560e4658b73ea15f6dc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_de20f8e837c27a9f613d1ce7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_ed1722e27a6dcbc4fad56dad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_aafea71cc36dd611ca1ff6ae.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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:ffa;src:url('chunks/assets/font_97401754156fb0c3ea300990.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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:ffb;src:url('chunks/assets/font_71ead906b26461f713905487.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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:ffc;src:url('chunks/assets/font_500a17fced5f2646920fd0ef.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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:ffd;src:url('chunks/assets/font_fd164d73289ac320ac82c7d4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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:ffe;src:url('chunks/assets/font_e16ef53d816015bf53c71153.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_a6c200a7d4d92bd63a8b793b.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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:ff10;src:url('chunks/assets/font_c59ce6845586e231967beb82.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_0abef560e4658b73ea15f6dc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_4bb18cbcf8bb4ffd50cd598b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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:ff13;src:url('chunks/assets/font_fc62138f41cbeac573c8d493.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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:ff14;src:url('chunks/assets/font_f2662beb34c8e379333561d3.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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:ff15;src:url('chunks/assets/font_2b9fb582b4023f8dff42753b.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-15.000000px;}
.ls6{letter-spacing:-13.200000px;}
.lsb{letter-spacing:-1.680000px;}
.ls9{letter-spacing:-1.344000px;}
.ls5{letter-spacing:-1.092000px;}
.lsd{letter-spacing:-0.858000px;}
.ls8{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.420000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.840000px;}
.lsc{letter-spacing:2.610000px;}
.ls1{letter-spacing:9.450000px;}
.ls4{letter-spacing:9.900000px;}
.ls0{letter-spacing:11.250000px;}
.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:-37.296000px;}
.ws1a{word-spacing:-23.436000px;}
.ws5{word-spacing:-23.184000px;}
.ws46{word-spacing:-23.016000px;}
.ws47{word-spacing:-22.764000px;}
.ws56{word-spacing:-21.762000px;}
.ws57{word-spacing:-20.088000px;}
.ws19{word-spacing:-16.920000px;}
.ws1{word-spacing:-11.400000px;}
.ws16{word-spacing:-10.032000px;}
.ws20{word-spacing:-4.368000px;}
.ws4b{word-spacing:-4.116000px;}
.ws5c{word-spacing:-3.900000px;}
.ws54{word-spacing:-3.696000px;}
.wsf{word-spacing:-3.444000px;}
.ws49{word-spacing:-3.108000px;}
.ws59{word-spacing:-2.610000px;}
.ws14{word-spacing:-2.604000px;}
.ws3a{word-spacing:-2.520000px;}
.ws1f{word-spacing:-2.436000px;}
.ws27{word-spacing:-2.352000px;}
.ws41{word-spacing:-2.184000px;}
.ws3e{word-spacing:-2.016000px;}
.ws38{word-spacing:-1.848000px;}
.ws4a{word-spacing:-1.764000px;}
.wsc{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.428000px;}
.ws2e{word-spacing:-1.344000px;}
.ws4f{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.092000px;}
.ws22{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.588000px;}
.ws24{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.420000px;}
.ws26{word-spacing:-0.336000px;}
.ws32{word-spacing:-0.252000px;}
.ws4d{word-spacing:-0.168000px;}
.ws3{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.132000px;}
.ws0{word-spacing:-0.108000px;}
.ws30{word-spacing:-0.084000px;}
.ws6{word-spacing:0.000000px;}
.ws37{word-spacing:0.084000px;}
.ws12{word-spacing:0.168000px;}
.ws31{word-spacing:0.252000px;}
.ws2a{word-spacing:0.420000px;}
.ws11{word-spacing:0.504000px;}
.ws29{word-spacing:0.840000px;}
.ws5b{word-spacing:0.858000px;}
.wsb{word-spacing:1.008000px;}
.ws21{word-spacing:1.092000px;}
.ws39{word-spacing:1.260000px;}
.ws55{word-spacing:1.596000px;}
.ws4c{word-spacing:1.764000px;}
.ws10{word-spacing:1.848000px;}
.ws3f{word-spacing:2.016000px;}
.ws48{word-spacing:2.184000px;}
.ws2c{word-spacing:2.436000px;}
.ws2b{word-spacing:2.688000px;}
.ws35{word-spacing:2.856000px;}
.ws40{word-spacing:3.276000px;}
.wsd{word-spacing:3.360000px;}
.ws45{word-spacing:3.528000px;}
.ws50{word-spacing:3.612000px;}
.ws34{word-spacing:3.780000px;}
.ws3b{word-spacing:4.032000px;}
.ws53{word-spacing:4.200000px;}
.ws1e{word-spacing:4.284000px;}
.ws1b{word-spacing:4.368000px;}
.ws2f{word-spacing:4.620000px;}
.ws58{word-spacing:4.956000px;}
.ws2d{word-spacing:5.040000px;}
.ws43{word-spacing:5.124000px;}
.ws13{word-spacing:5.712000px;}
.ws1c{word-spacing:5.964000px;}
.ws23{word-spacing:6.048000px;}
.ws42{word-spacing:6.132000px;}
.ws51{word-spacing:6.384000px;}
.wse{word-spacing:6.552000px;}
.ws28{word-spacing:6.972000px;}
.ws3d{word-spacing:7.308000px;}
.ws52{word-spacing:8.148000px;}
.ws9{word-spacing:8.568000px;}
.ws44{word-spacing:8.736000px;}
.wsa{word-spacing:8.904000px;}
.ws33{word-spacing:9.240000px;}
.ws8{word-spacing:11.172000px;}
.ws7{word-spacing:11.592000px;}
.ws3c{word-spacing:12.180000px;}
.ws5a{word-spacing:12.714000px;}
.ws17{word-spacing:13.068000px;}
.ws4e{word-spacing:13.524000px;}
.ws2{word-spacing:14.850000px;}
._14{margin-left:-11.999400px;}
._13{margin-left:-10.896000px;}
._3{margin-left:-9.000000px;}
._5{margin-left:-7.206000px;}
._0{margin-left:-5.832000px;}
._7{margin-left:-4.074000px;}
._1{margin-left:-2.808000px;}
._2{margin-left:-1.566000px;}
._8{width:1.016400px;}
._12{width:2.301600px;}
._d{width:3.498000px;}
._b{width:4.704000px;}
._c{width:5.863200px;}
._11{width:7.345200px;}
._a{width:8.541600px;}
._9{width:9.714000px;}
._10{width:10.794000px;}
._e{width:11.826000px;}
._f{width:13.200000px;}
._4{width:14.250000px;}
._15{width:25.786800px;}
._16{width:27.346800px;}
._17{width:43.941600px;}
._18{width:45.322800px;}
._6{width:166.444200px;}
.fc3{color:rgb(254,124,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(254,80,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:18.101100px;}
.y8{bottom:39.101100px;}
.y37{bottom:63.779550px;}
.y67{bottom:66.454800px;}
.y66{bottom:94.951800px;}
.y65{bottom:123.448800px;}
.y64{bottom:151.945800px;}
.y8f{bottom:163.811850px;}
.y30{bottom:178.358100px;}
.y63{bottom:180.442800px;}
.y8e{bottom:186.311850px;}
.y2f{bottom:206.855100px;}
.y8d{bottom:208.811850px;}
.y62{bottom:208.939800px;}
.y8c{bottom:231.311850px;}
.y2e{bottom:235.352100px;}
.y61{bottom:237.436800px;}
.y8b{bottom:253.811850px;}
.y2d{bottom:263.849100px;}
.y60{bottom:265.933800px;}
.y2c{bottom:292.346100px;}
.y5f{bottom:294.430800px;}
.y2b{bottom:320.843100px;}
.y5e{bottom:322.927800px;}
.y8a{bottom:339.115800px;}
.y2a{bottom:349.340100px;}
.y5d{bottom:351.424800px;}
.y89{bottom:364.621800px;}
.y29{bottom:377.837100px;}
.y5c{bottom:379.921800px;}
.y88{bottom:390.127800px;}
.y28{bottom:406.334100px;}
.y5b{bottom:408.418800px;}
.y87{bottom:415.633800px;}
.y27{bottom:434.831100px;}
.y5a{bottom:436.915800px;}
.y86{bottom:441.139800px;}
.y26{bottom:463.328100px;}
.y59{bottom:465.412800px;}
.y85{bottom:466.645800px;}
.y25{bottom:491.825100px;}
.y84{bottom:492.151800px;}
.y58{bottom:493.909800px;}
.y83{bottom:517.657800px;}
.y24{bottom:520.322100px;}
.y57{bottom:522.406800px;}
.y82{bottom:543.163800px;}
.y23{bottom:548.819100px;}
.y56{bottom:550.903800px;}
.y81{bottom:568.669800px;}
.y22{bottom:577.316100px;}
.y55{bottom:579.400800px;}
.y80{bottom:594.175800px;}
.y21{bottom:605.813100px;}
.y54{bottom:607.897800px;}
.y7f{bottom:619.681800px;}
.y20{bottom:634.310100px;}
.y53{bottom:636.394800px;}
.y7e{bottom:645.187800px;}
.y1f{bottom:662.807100px;}
.y52{bottom:664.891800px;}
.y7d{bottom:670.693800px;}
.y1e{bottom:691.304100px;}
.y51{bottom:693.388800px;}
.y7c{bottom:696.199800px;}
.y7{bottom:716.466000px;}
.y1d{bottom:719.801100px;}
.y7b{bottom:721.705800px;}
.y50{bottom:721.885800px;}
.y31{bottom:734.796600px;}
.y7a{bottom:747.211800px;}
.y1c{bottom:748.298100px;}
.y4f{bottom:750.382800px;}
.y79{bottom:772.717800px;}
.y1b{bottom:776.795100px;}
.y4e{bottom:778.879800px;}
.y78{bottom:798.223800px;}
.y1a{bottom:805.292100px;}
.y4d{bottom:807.376800px;}
.y77{bottom:823.729800px;}
.y19{bottom:833.789100px;}
.y4c{bottom:835.873800px;}
.y76{bottom:849.235800px;}
.y18{bottom:862.286100px;}
.y4b{bottom:864.370800px;}
.y75{bottom:874.741800px;}
.y17{bottom:890.783100px;}
.y4a{bottom:892.867800px;}
.y74{bottom:900.247800px;}
.y16{bottom:919.280100px;}
.y49{bottom:921.364800px;}
.y73{bottom:925.753800px;}
.y15{bottom:947.777100px;}
.y48{bottom:949.861800px;}
.y72{bottom:951.259800px;}
.y14{bottom:976.274100px;}
.y71{bottom:976.765800px;}
.y47{bottom:978.358800px;}
.y70{bottom:1002.271800px;}
.y13{bottom:1004.771100px;}
.y46{bottom:1006.855800px;}
.y6f{bottom:1027.777800px;}
.y12{bottom:1033.268100px;}
.y45{bottom:1035.352800px;}
.y6e{bottom:1053.283800px;}
.y11{bottom:1061.765100px;}
.y44{bottom:1063.849800px;}
.y6d{bottom:1078.789800px;}
.y10{bottom:1090.262100px;}
.y43{bottom:1092.346800px;}
.y6c{bottom:1104.295800px;}
.yf{bottom:1118.759100px;}
.y42{bottom:1120.843800px;}
.y6b{bottom:1129.801800px;}
.ye{bottom:1147.256100px;}
.y41{bottom:1149.340800px;}
.y6a{bottom:1155.307800px;}
.y6{bottom:1157.886150px;}
.yd{bottom:1175.753100px;}
.y40{bottom:1177.837800px;}
.y69{bottom:1180.813800px;}
.y3f{bottom:1206.334800px;}
.y3{bottom:1221.954600px;}
.y68{bottom:1234.813800px;}
.y3e{bottom:1234.831800px;}
.y2{bottom:1239.954600px;}
.y34{bottom:1258.204800px;}
.y3d{bottom:1263.328800px;}
.y1{bottom:1264.824000px;}
.y33{bottom:1276.204800px;}
.y3c{bottom:1291.825800px;}
.y5{bottom:1302.021150px;}
.y32{bottom:1307.648850px;}
.yc{bottom:1310.552100px;}
.y3b{bottom:1320.322800px;}
.yb{bottom:1339.049100px;}
.y4{bottom:1345.221150px;}
.y3a{bottom:1348.819800px;}
.y36{bottom:1354.993950px;}
.ya{bottom:1367.546100px;}
.y39{bottom:1377.316800px;}
.y35{bottom:1394.593950px;}
.y38{bottom:1405.813800px;}
.h2{height:63.000000px;}
.h9{height:69.300000px;}
.h8{height:75.600000px;}
.hb{height:81.900000px;}
.h6{height:88.200000px;}
.ha{height:94.500000px;}
.h1{height:113.400000px;}
.h5{height:132.300000px;}
.h7{height:138.600000px;}
.h4{height:151.200000px;}
.h3{height:157.500000px;}
.h0{height:1536.000000px;}
.w0{width:1152.000000px;}
.x0{left:0.000000px;}
.x2{left:21.895800px;}
.x9{left:29.763750px;}
.x8{left:34.015800px;}
.x1{left:36.000000px;}
.xa{left:130.663050px;}
.xb{left:150.463050px;}
.xc{left:172.063050px;}
.x6{left:233.858250px;}
.xd{left:250.582650px;}
.x7{left:263.615250px;}
.x10{left:275.544600px;}
.xe{left:280.339650px;}
.x4{left:302.396850px;}
.x5{left:362.231850px;}
.x3{left:1096.439250px;}
.xf{left:1097.930100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-13.333333pt;}
.ls6{letter-spacing:-11.733333pt;}
.lsb{letter-spacing:-1.493333pt;}
.ls9{letter-spacing:-1.194667pt;}
.ls5{letter-spacing:-0.970667pt;}
.lsd{letter-spacing:-0.762667pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.746667pt;}
.lsc{letter-spacing:2.320000pt;}
.ls1{letter-spacing:8.400000pt;}
.ls4{letter-spacing:8.800000pt;}
.ls0{letter-spacing:10.000000pt;}
.ws4{word-spacing:-33.152000pt;}
.ws1a{word-spacing:-20.832000pt;}
.ws5{word-spacing:-20.608000pt;}
.ws46{word-spacing:-20.458667pt;}
.ws47{word-spacing:-20.234667pt;}
.ws56{word-spacing:-19.344000pt;}
.ws57{word-spacing:-17.856000pt;}
.ws19{word-spacing:-15.040000pt;}
.ws1{word-spacing:-10.133333pt;}
.ws16{word-spacing:-8.917333pt;}
.ws20{word-spacing:-3.882667pt;}
.ws4b{word-spacing:-3.658667pt;}
.ws5c{word-spacing:-3.466667pt;}
.ws54{word-spacing:-3.285333pt;}
.wsf{word-spacing:-3.061333pt;}
.ws49{word-spacing:-2.762667pt;}
.ws59{word-spacing:-2.320000pt;}
.ws14{word-spacing:-2.314667pt;}
.ws3a{word-spacing:-2.240000pt;}
.ws1f{word-spacing:-2.165333pt;}
.ws27{word-spacing:-2.090667pt;}
.ws41{word-spacing:-1.941333pt;}
.ws3e{word-spacing:-1.792000pt;}
.ws38{word-spacing:-1.642667pt;}
.ws4a{word-spacing:-1.568000pt;}
.wsc{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.269333pt;}
.ws2e{word-spacing:-1.194667pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws36{word-spacing:-0.970667pt;}
.ws22{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.522667pt;}
.ws24{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.373333pt;}
.ws26{word-spacing:-0.298667pt;}
.ws32{word-spacing:-0.224000pt;}
.ws4d{word-spacing:-0.149333pt;}
.ws3{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.117333pt;}
.ws0{word-spacing:-0.096000pt;}
.ws30{word-spacing:-0.074667pt;}
.ws6{word-spacing:0.000000pt;}
.ws37{word-spacing:0.074667pt;}
.ws12{word-spacing:0.149333pt;}
.ws31{word-spacing:0.224000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws11{word-spacing:0.448000pt;}
.ws29{word-spacing:0.746667pt;}
.ws5b{word-spacing:0.762667pt;}
.wsb{word-spacing:0.896000pt;}
.ws21{word-spacing:0.970667pt;}
.ws39{word-spacing:1.120000pt;}
.ws55{word-spacing:1.418667pt;}
.ws4c{word-spacing:1.568000pt;}
.ws10{word-spacing:1.642667pt;}
.ws3f{word-spacing:1.792000pt;}
.ws48{word-spacing:1.941333pt;}
.ws2c{word-spacing:2.165333pt;}
.ws2b{word-spacing:2.389333pt;}
.ws35{word-spacing:2.538667pt;}
.ws40{word-spacing:2.912000pt;}
.wsd{word-spacing:2.986667pt;}
.ws45{word-spacing:3.136000pt;}
.ws50{word-spacing:3.210667pt;}
.ws34{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.584000pt;}
.ws53{word-spacing:3.733333pt;}
.ws1e{word-spacing:3.808000pt;}
.ws1b{word-spacing:3.882667pt;}
.ws2f{word-spacing:4.106667pt;}
.ws58{word-spacing:4.405333pt;}
.ws2d{word-spacing:4.480000pt;}
.ws43{word-spacing:4.554667pt;}
.ws13{word-spacing:5.077333pt;}
.ws1c{word-spacing:5.301333pt;}
.ws23{word-spacing:5.376000pt;}
.ws42{word-spacing:5.450667pt;}
.ws51{word-spacing:5.674667pt;}
.wse{word-spacing:5.824000pt;}
.ws28{word-spacing:6.197333pt;}
.ws3d{word-spacing:6.496000pt;}
.ws52{word-spacing:7.242667pt;}
.ws9{word-spacing:7.616000pt;}
.ws44{word-spacing:7.765333pt;}
.wsa{word-spacing:7.914667pt;}
.ws33{word-spacing:8.213333pt;}
.ws8{word-spacing:9.930667pt;}
.ws7{word-spacing:10.304000pt;}
.ws3c{word-spacing:10.826667pt;}
.ws5a{word-spacing:11.301333pt;}
.ws17{word-spacing:11.616000pt;}
.ws4e{word-spacing:12.021333pt;}
.ws2{word-spacing:13.200000pt;}
._14{margin-left:-10.666133pt;}
._13{margin-left:-9.685333pt;}
._3{margin-left:-8.000000pt;}
._5{margin-left:-6.405333pt;}
._0{margin-left:-5.184000pt;}
._7{margin-left:-3.621333pt;}
._1{margin-left:-2.496000pt;}
._2{margin-left:-1.392000pt;}
._8{width:0.903467pt;}
._12{width:2.045867pt;}
._d{width:3.109333pt;}
._b{width:4.181333pt;}
._c{width:5.211733pt;}
._11{width:6.529067pt;}
._a{width:7.592533pt;}
._9{width:8.634667pt;}
._10{width:9.594667pt;}
._e{width:10.512000pt;}
._f{width:11.733333pt;}
._4{width:12.666667pt;}
._15{width:22.921600pt;}
._16{width:24.308267pt;}
._17{width:39.059200pt;}
._18{width:40.286933pt;}
._6{width:147.950400pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:16.089867pt;}
.y8{bottom:34.756533pt;}
.y37{bottom:56.692933pt;}
.y67{bottom:59.070933pt;}
.y66{bottom:84.401600pt;}
.y65{bottom:109.732267pt;}
.y64{bottom:135.062933pt;}
.y8f{bottom:145.610533pt;}
.y30{bottom:158.540533pt;}
.y63{bottom:160.393600pt;}
.y8e{bottom:165.610533pt;}
.y2f{bottom:183.871200pt;}
.y8d{bottom:185.610533pt;}
.y62{bottom:185.724267pt;}
.y8c{bottom:205.610533pt;}
.y2e{bottom:209.201867pt;}
.y61{bottom:211.054933pt;}
.y8b{bottom:225.610533pt;}
.y2d{bottom:234.532533pt;}
.y60{bottom:236.385600pt;}
.y2c{bottom:259.863200pt;}
.y5f{bottom:261.716267pt;}
.y2b{bottom:285.193867pt;}
.y5e{bottom:287.046933pt;}
.y8a{bottom:301.436267pt;}
.y2a{bottom:310.524533pt;}
.y5d{bottom:312.377600pt;}
.y89{bottom:324.108267pt;}
.y29{bottom:335.855200pt;}
.y5c{bottom:337.708267pt;}
.y88{bottom:346.780267pt;}
.y28{bottom:361.185867pt;}
.y5b{bottom:363.038933pt;}
.y87{bottom:369.452267pt;}
.y27{bottom:386.516533pt;}
.y5a{bottom:388.369600pt;}
.y86{bottom:392.124267pt;}
.y26{bottom:411.847200pt;}
.y59{bottom:413.700267pt;}
.y85{bottom:414.796267pt;}
.y25{bottom:437.177867pt;}
.y84{bottom:437.468267pt;}
.y58{bottom:439.030933pt;}
.y83{bottom:460.140267pt;}
.y24{bottom:462.508533pt;}
.y57{bottom:464.361600pt;}
.y82{bottom:482.812267pt;}
.y23{bottom:487.839200pt;}
.y56{bottom:489.692267pt;}
.y81{bottom:505.484267pt;}
.y22{bottom:513.169867pt;}
.y55{bottom:515.022933pt;}
.y80{bottom:528.156267pt;}
.y21{bottom:538.500533pt;}
.y54{bottom:540.353600pt;}
.y7f{bottom:550.828267pt;}
.y20{bottom:563.831200pt;}
.y53{bottom:565.684267pt;}
.y7e{bottom:573.500267pt;}
.y1f{bottom:589.161867pt;}
.y52{bottom:591.014933pt;}
.y7d{bottom:596.172267pt;}
.y1e{bottom:614.492533pt;}
.y51{bottom:616.345600pt;}
.y7c{bottom:618.844267pt;}
.y7{bottom:636.858667pt;}
.y1d{bottom:639.823200pt;}
.y7b{bottom:641.516267pt;}
.y50{bottom:641.676267pt;}
.y31{bottom:653.152533pt;}
.y7a{bottom:664.188267pt;}
.y1c{bottom:665.153867pt;}
.y4f{bottom:667.006933pt;}
.y79{bottom:686.860267pt;}
.y1b{bottom:690.484533pt;}
.y4e{bottom:692.337600pt;}
.y78{bottom:709.532267pt;}
.y1a{bottom:715.815200pt;}
.y4d{bottom:717.668267pt;}
.y77{bottom:732.204267pt;}
.y19{bottom:741.145867pt;}
.y4c{bottom:742.998933pt;}
.y76{bottom:754.876267pt;}
.y18{bottom:766.476533pt;}
.y4b{bottom:768.329600pt;}
.y75{bottom:777.548267pt;}
.y17{bottom:791.807200pt;}
.y4a{bottom:793.660267pt;}
.y74{bottom:800.220267pt;}
.y16{bottom:817.137867pt;}
.y49{bottom:818.990933pt;}
.y73{bottom:822.892267pt;}
.y15{bottom:842.468533pt;}
.y48{bottom:844.321600pt;}
.y72{bottom:845.564267pt;}
.y14{bottom:867.799200pt;}
.y71{bottom:868.236267pt;}
.y47{bottom:869.652267pt;}
.y70{bottom:890.908267pt;}
.y13{bottom:893.129867pt;}
.y46{bottom:894.982933pt;}
.y6f{bottom:913.580267pt;}
.y12{bottom:918.460533pt;}
.y45{bottom:920.313600pt;}
.y6e{bottom:936.252267pt;}
.y11{bottom:943.791200pt;}
.y44{bottom:945.644267pt;}
.y6d{bottom:958.924267pt;}
.y10{bottom:969.121867pt;}
.y43{bottom:970.974933pt;}
.y6c{bottom:981.596267pt;}
.yf{bottom:994.452533pt;}
.y42{bottom:996.305600pt;}
.y6b{bottom:1004.268267pt;}
.ye{bottom:1019.783200pt;}
.y41{bottom:1021.636267pt;}
.y6a{bottom:1026.940267pt;}
.y6{bottom:1029.232133pt;}
.yd{bottom:1045.113867pt;}
.y40{bottom:1046.966933pt;}
.y69{bottom:1049.612267pt;}
.y3f{bottom:1072.297600pt;}
.y3{bottom:1086.181867pt;}
.y68{bottom:1097.612267pt;}
.y3e{bottom:1097.628267pt;}
.y2{bottom:1102.181867pt;}
.y34{bottom:1118.404267pt;}
.y3d{bottom:1122.958933pt;}
.y1{bottom:1124.288000pt;}
.y33{bottom:1134.404267pt;}
.y3c{bottom:1148.289600pt;}
.y5{bottom:1157.352133pt;}
.y32{bottom:1162.354533pt;}
.yc{bottom:1164.935200pt;}
.y3b{bottom:1173.620267pt;}
.yb{bottom:1190.265867pt;}
.y4{bottom:1195.752133pt;}
.y3a{bottom:1198.950933pt;}
.y36{bottom:1204.439067pt;}
.ya{bottom:1215.596533pt;}
.y39{bottom:1224.281600pt;}
.y35{bottom:1239.639067pt;}
.y38{bottom:1249.612267pt;}
.h2{height:56.000000pt;}
.h9{height:61.600000pt;}
.h8{height:67.200000pt;}
.hb{height:72.800000pt;}
.h6{height:78.400000pt;}
.ha{height:84.000000pt;}
.h1{height:100.800000pt;}
.h5{height:117.600000pt;}
.h7{height:123.200000pt;}
.h4{height:134.400000pt;}
.h3{height:140.000000pt;}
.h0{height:1365.333333pt;}
.w0{width:1024.000000pt;}
.x0{left:0.000000pt;}
.x2{left:19.462933pt;}
.x9{left:26.456667pt;}
.x8{left:30.236267pt;}
.x1{left:32.000000pt;}
.xa{left:116.144933pt;}
.xb{left:133.744933pt;}
.xc{left:152.944933pt;}
.x6{left:207.874000pt;}
.xd{left:222.740133pt;}
.x7{left:234.324667pt;}
.x10{left:244.928533pt;}
.xe{left:249.190800pt;}
.x4{left:268.797200pt;}
.x5{left:321.983867pt;}
.x3{left:974.612667pt;}
.xf{left:975.937867pt;}
}

